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: 34
📄 Dateien: 79
📏 430.3m
📝 71'717 Zeilen
root/ ├─ app/ │ ├─ JS/ │ │ ├─ modules/ │ │ │ ├─ article-editor.module.js.php │ │ │ ├─ article.module.js.php │ │ │ ├─ marketplace.module.js.php │ │ │ └─ page-shell.module.js.php │ │ ├─ dropdown.js.php │ │ └─ js.router.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 │ │ └─ runtime.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 │ │ ├─ page.css.php │ │ └─ responsive.css.php │ ├─ helper/ │ │ ├─ error.php │ │ ├─ helper.php │ │ ├─ input_control.php │ │ ├─ mail.php │ │ └─ nav_uid.helper.php │ ├─ model/ │ │ ├─ label-model/ │ │ │ ├─ label.lookup.model.php │ │ │ ├─ label.read.model.php │ │ │ └─ label.write.model.php │ │ ├─ nav-model/ │ │ │ └─ nav.helpers.model.php │ │ ├─ 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 │ │ ├─ category.service.php │ │ ├─ file.service.php │ │ └─ nav.service.php │ ├─ view/ │ │ ├─ page_view/ ... (7 Einträge) │ │ ├─ part_view/ ... (8 Einträge) │ │ └─ main.view.php │ └─ bootstrap.php ├─ dev/ ... (7 Einträge) ├─ docweb/ ... (11 Einträge) ├─ library/ ... (1 Eintrag) ├─ public/ │ ├─ JS/ │ │ ├─ config/ │ │ │ └─ core.config.js │ │ └─ core/ │ │ ├─ flow.navigation.service.js │ │ ├─ flow.runtime.service.js │ │ ├─ flow.service.js │ │ ├─ navigation.service.js │ │ ├─ request.service.js │ │ ├─ sidebar.service.js │ │ ├─ stylesheet.service.js │ │ ├─ timer.service.js │ │ └─ ui.service.js │ ├─ dev/ ... (4 Einträge) │ ├─ doc/ ... (5 Einträge) │ ├─ img/ ... (9 Einträge) │ ├─ media/ │ │ └─ avatar.php │ ├─ .htaccess │ ├─ ajax.php │ ├─ content.php │ ├─ dom.js │ ├─ index.php │ ├─ item.php │ ├─ stream.js │ ├─ style.php │ └─ test.php ├─ sql/ ... (13 Einträge) ├─ storage/ ... (2 Einträge) ├─ .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 |