Zdoo Directory

2016-08-31 09:36:26    tengfei    5228

├── app application directory
│   ├── cash CASH module
|   |   |--address address management
|   |   |   |--config.php CASH configuration, such as required field, search criteria
|   |   |   |--control.php CASH processing method (all pages)
|   |   |   |--model.php data storage methods
|   |   |   |--lang language file
|   |   |   |   |--zh-cn.php  simplified Chinese
|   |   |   |   |--en.php English
|   |   |   |   |--zh-tw.php traditional Chinese
|   |   |   |--js CASH js file
|   |   |   |   |--common.js load js to all CASH pages
|   |   |   |   |--index.js js file on address-index page
|   |   |   |--css
|   |   |   |   |--common.css load css to all CASH pages
|   |   |   |   |--index.css css file on address-index page
|   |   |   |--ext extension directory( no such directory in default settings)
|   |   |   |   |--config load config to all  pages
|   |   |   |   |   |--test.php customized configuration
|   |   |   |   |--control control extentsion(page processing extension)(ref:http://devel.cnezsoft.com/book/extension/extend-control-37.html)
|   |   |   |   |   |--index.php address-index page extension
|   |   |   |   |--model model extension(data processing extension)(ref:http://devel.cnezsoft.com/book/extension/extend-control-38.html)
|   |   |   |   |   |--foo.php address foo extension in model
|   |   |   |   |--view page display extension(ref:http://devel.cnezsoft.com/book/extension/extend-control-39.html)
|   |   |   |   |   |--index.html.php index page display extension
|   |   |   |   |--lang language extension (all page under this directory will load this extension)
|   |   |   |   |   |--en English extension
|   |   |   |   |   |   |--index.php
|   |   |   |   |   |--zh-cn simplified Chinese extension
|   |   |   |   |   |   |--index.php
|   |   |   |   |--js js file extension
|   |   |   |   |   |--index js extension on index page( all js files under this directory will be printed)
|   |   |   |   |   |   |--test.js
|   |   |   |   |--css css file extension
|   |   |   |   |   |--index  css extension on index page( all js files under this directory will be printed)
|   |   |   |   |   |   |--test.css
│   ├── crm CRM module
│   ├── oa OA module
│   ├── sys general system applications
├── bin executable files, scripts, such as use command lines to call Zdoo, and switch between traditional and simplified Chinese.
│   └── rzcli
├── config system configuration file
│   ├── config.php default global configuration file; can be overridden by the variables share the same name
│   ├── my.php Database connection information and install and debug configuration
│   └── rights.php default account configuration。
├── db sql file for installation and upgrade
│   ├── ranzhi.sql sql installation
│   └── upgrade3.3. sqil file executed to upgrade sql 3.3
├── doc documents such as software modification record, license release record
│   ├── LICENSE license file
├── framework ZentaoPHP framework, MVC architecture
│   ├── control.class.php demand processing
│   ├── helper.class.php tools
│   ├── loader.php load framwork
│   ├── model.class.php databse operation
│   └── router.class.php request routing
├── lib library, such as the third party lib。
│   ├── dao databse operation; disable sql compiling
│   ├── front HTML/JS/CSSoutput, unite html output format, such as a/script/img tabs
├── tmp temporary files and logs
│   ├── backup backup file storage location
│   │   ├── 201606080101060.file.zip.php attachment zip package
│   │   ├── 201606080101060.sql.php database backup zup package
│   ├── cache cache files
│   ├── extension extension zip package
│   ├── log system log
│   │   ├── cron.20160601.log.php task planning log
│   │   ├── php.20160616.php php error log
│   │   └── sql.20160531.php sql log
│   ├── model temporary extension and merge files
│   └── package temporary extension zip package
├── VERSION version
└── www frontend directory
    ├── cash CASH module entry
    │   └── index.php
    ├── data file data generated after installation and operation
    │   └── upload uploaded attachment directory
    ├── index.php index page entry
    ├── robots.txt disable web crawling
    ├── sys  system entry
    │   ├── index.php
    │   ├── install.php installation entry
    │   └── upgrade.php upgrade entry