Shop Project - Documentation

Project Structure

Current project structure with automatically generated directory tree and class overview.

πŸ—ΊοΈ Stage 0 | πŸ“š Draft | πŸ“Ÿ 2026 06 15 | πŸ“ Basics

Important Top-Level Folders

  • app/: core logic with config, control, core, helper, model, service, view.
  • docweb/: internal web documentation with its own MVC structure.
  • public/: web entry points such as index.php, ajax.php, style.php.
  • sql/: ordered database deployment scripts.
  • tools/: development tools for diagnostics, setup, export, and tests.
  • storage/: runtime data such as uploads and logs.

Project Structure

πŸ“ Directories: 34 πŸ“„ Files: 79 πŸ“ 430.3m πŸ“ 71'717 Lines
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 Entries)
β”‚  β”‚  └─ map.php
β”‚  β”œβ”€ core/
β”‚  β”‚  β”œβ”€ app.php
β”‚  β”‚  β”œβ”€ dispatcher.php
β”‚  β”‚  β”œβ”€ router.php
β”‚  β”‚  └─ session.php
β”‚  β”œβ”€ css/
β”‚  β”‚  β”œβ”€ page/ ... (9 Entries)
β”‚  β”‚  β”œβ”€ 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 Entries)
β”‚  β”‚  β”œβ”€ part_view/ ... (8 Entries)
β”‚  β”‚  └─ main.view.php
β”‚  └─ bootstrap.php
β”œβ”€ dev/ ... (7 Entries)
β”œβ”€ docweb/ ... (11 Entries)
β”œβ”€ library/ ... (1 Entry)
β”œβ”€ 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 Entries)
β”‚  β”œβ”€ doc/ ... (5 Entries)
β”‚  β”œβ”€ img/ ... (9 Entries)
β”‚  β”œβ”€ media/
β”‚  β”‚  └─ avatar.php
β”‚  β”œβ”€ .htaccess
β”‚  β”œβ”€ ajax.php
β”‚  β”œβ”€ content.php
β”‚  β”œβ”€ dom.js
β”‚  β”œβ”€ index.php
β”‚  β”œβ”€ item.php
β”‚  β”œβ”€ stream.js
β”‚  β”œβ”€ style.php
β”‚  └─ test.php
β”œβ”€ sql/ ... (13 Entries)
β”œβ”€ storage/ ... (2 Entries)
β”œβ”€ .htaccess
└─ meta.php

Found Classes

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