123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | project name 项目名,一般为当前目录名,不定义则系统自动读取,如本项目为可复制且随意改名项目,则无需定义本常量
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_NAME', 'upload');
- /*
- |--------------------------------------------------------------------------
- | project lang 项目中文名 描述
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_LANG', '文件上传系统');
- /*
- |--------------------------------------------------------------------------
- | project lib 开放载入的类库名
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_LIB', 'upload');
- /*
- |--------------------------------------------------------------------------
- | project path
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_PATH', dirname(__FILE__) . DIRECTORY_SEPARATOR);
- /*
- |--------------------------------------------------------------------------
- | app order 排序
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_ORDER', -9);
- /*
- |--------------------------------------------------------------------------
- | app icon
- |--------------------------------------------------------------------------
- */
- define('DEVER_APP_ICON', 'glyphicon glyphicon-file');
- /*
- |--------------------------------------------------------------------------
- | entry
- |--------------------------------------------------------------------------
- */
- include(DEVER_APP_PATH . '../boot.php');
|