-
Notifications
You must be signed in to change notification settings - Fork 0
Directory Structure
QuestionDevelopment edited this page Oct 28, 2015
·
2 revisions
./site/ = standard MVC system
./site/controller/ = Handles the communication between the models and the views
./site/model/ = System the majority of website login
./site/view/ = What the user is displayed
./system/ = Website backend data goes here
./system/config/ = Configuration files for site (Default is used unless other declared)
./system/item/ = Holds specific entity or object of website (ie. user or product)
./system/query/ = Holds all database interactions with website
./template/ = Holds all design data
./template/sample/css/ = Holds all css files
./template/sample/img/ = Holds all image files (use sub folders! No images should go in this directory directly)
./template/sample/js = Holds all javascript
./xesm/ = Holds all framework files. These files should be modified very often.
./xesm/bundle/ = Holds common functions together for easy use
./xesm/core/ = Main system classes are in here
./xesm/inc/ = A place to store include files
./xesm/log/ = The log classes places all logs in here
./xesm/plugin/ = Any plugin can go in here (each plugin must be in its own folder)
These correspond to the directory structure of XESM