Shop Projekt - Dokumentation
Projektstruktur
Aktuelle Struktur des Projekts mit automatisch generiertem Verzeichnisbaum und Klassenuebersicht.
Wichtige Hauptordner
- app/: Kernlogik mit config, control, core, helper, model, service, view.
- docweb/: interne Web-Dokumentation mit eigener MVC-Struktur.
- public/: Web-Einstiegspunkte wie index.php, ajax.php, style.php.
- sql/: Datenbank-Deployment in geordneter Reihenfolge.
- tools/: Entwicklungswerkzeuge fuer Diagnose, Setup, Export und Tests.
- storage/: Laufzeitdaten wie uploads und logs.
🌳 Projekt-Struktur
📁 Verzeichnisse: 28
📄 Dateien: 59
📏 375.44m
📝 62'574 Zeilen
root/ ├─ app/ │ ├─ JS/ │ │ ├─ page/ ... (2 Einträge) │ │ ├─ base.js.php │ │ ├─ dropdown.js.php │ │ └─ main.js.php │ ├─ config/ │ │ ├─ app/ │ │ │ ├─ article.config.php │ │ │ ├─ db.config.php │ │ │ ├─ env.config.php │ │ │ ├─ form.config.php │ │ │ └─ validation.config.php │ │ ├─ domain/ │ │ │ ├─ page.config.php │ │ │ └─ user.config.php │ │ ├─ security/ │ │ │ ├─ mail.config.php │ │ │ ├─ security.config.php │ │ │ └─ session.config.php │ │ └─ config.php │ ├─ control/ │ │ ├─ page/ ... (7 Einträge) │ │ └─ map.php │ ├─ core/ │ │ ├─ app.php │ │ ├─ dispatcher.php │ │ ├─ router.php │ │ └─ session.php │ ├─ css/ │ │ ├─ page/ ... (9 Einträge) │ │ ├─ base.css.php │ │ ├─ config.css.php │ │ ├─ dropdown.css.php │ │ ├─ form.css.php │ │ ├─ language.css.php │ │ ├─ main.css.php │ │ └─ responsive.css.php │ ├─ helper/ │ │ ├─ error.php │ │ ├─ helper.php │ │ ├─ input_control.php │ │ ├─ mail.php │ │ └─ nav_uid.helper.php │ ├─ model/ │ │ ├─ article.model.php │ │ ├─ category.model.php │ │ ├─ database.model.php │ │ ├─ label.model.php │ │ ├─ main.model.php │ │ ├─ nav.model.php │ │ ├─ page.model.php │ │ ├─ product.model.php │ │ └─ user.model.php │ ├─ security/ │ │ └─ security.php │ ├─ service/ │ │ ├─ access.service.php │ │ ├─ auth.service.php │ │ ├─ categorie.service.php │ │ ├─ file.service.php │ │ └─ nav.service.php │ ├─ view/ │ │ ├─ page_view/ ... (7 Einträge) │ │ ├─ part_view/ ... (6 Einträge) │ │ └─ main.view.php │ └─ bootstrap.php ├─ dev/ ... (7 Einträge) ├─ docweb/ ... (12 Einträge) ├─ library/ ... (1 Eintrag) ├─ public/ │ ├─ doc/ ... (5 Einträge) │ ├─ img/ ... (10 Einträge) │ ├─ media/ │ │ └─ avatar.php │ ├─ .htaccess │ ├─ ajax.php │ ├─ developer.php │ ├─ dom.php │ ├─ index.php │ ├─ style.php │ └─ test.php ├─ sql/ ... (11 Einträge) ├─ storage/ ... (2 Einträge) ├─ .development ├─ .htaccess └─ meta.php
Gefundene Klassen
Gefunden: 16
| Typ | Name | Datei |
|---|---|---|
| Class | cAccess |
app/service/access.service.php |
| Class | cApp |
app/core/app.php |
| Class | cAuth |
app/service/auth.service.php |
| Class | cCg |
app/config/config.php |
| Class | cDBc |
app/config/app/db.config.php |
| Class | cDatabase |
app/model/database.model.php |
| Class | cEc |
app/config/app/env.config.php |
| Class | cFc |
app/config/app/form.config.php |
| Class | cPc |
app/config/domain/page.config.php |
| Class | cRouter |
app/core/router.php |
| Class | cSc |
app/config/security/session.config.php |
| Class | cSecc |
app/config/security/security.config.php |
| Class | cSecurity |
app/security/security.php |
| Class | cSession |
app/core/session.php |
| Class | cUc |
app/config/domain/user.config.php |
| Class | cVc |
app/config/app/validation.config.php |