diff options
Diffstat (limited to 'doc/de/developer/file_system_layout.md')
-rw-r--r-- | doc/de/developer/file_system_layout.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/de/developer/file_system_layout.md b/doc/de/developer/file_system_layout.md new file mode 100644 index 000000000..ae62791ee --- /dev/null +++ b/doc/de/developer/file_system_layout.md @@ -0,0 +1,20 @@ +### Dateisystem-Layout + +| Directory | Description | +| ------------------------- | ------------------------------------------------------------ | +| addon | optionale Addons/Plugins | +| boot.php | Jeder Prozess verwendet dies, um die Anwendungsstruktur zu booten | +| doc | Hilfedateien | +| images | erforderliche Bilder | +| include | Das „Modell“ in MVC - (Back-End-Funktionen), enthält auch PHP „Executables“ für die Hintergrundverarbeitung | +| index.php | Der Front-End-Controller für den Webzugang | +| install | Installations- und Upgrade-Dateien und DB-Schema | +| library | Module von Drittanbietern (müssen lizenzkompatibel sein) | +| mod | Steuerungsmodule basierend auf URL-Pfadnamen (z.B. http://sitename/foo lädt mod/foo.php) | +| mod/site/ | Site-spezifische Mod-Overrides, die von Git ausgeschlossen sind | +| util | Übersetzungstools, Hauptdatenbank für englische Zeichenketten und andere verschiedene Dienstprogramme | +| version.inc | enthält die aktuelle Version (die automatisch über cron für das Haupt-Repository aktualisiert und über git verteilt wird) | +| view | Themen- und Sprachdateien | +| view/(css,js,img,php,tpl) | Standard-Theme-Dateien | +| view/(en,it,es ...) | Sprachstrings und Ressourcen | +| view/theme/ | Einzelne benannte Themen, die (css,js,img,php,tpl) Overrides enthalten |
\ No newline at end of file |