mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-07 23:22:48 +08:00
添加应用状态配置文件支持
This commit is contained in:
@@ -220,8 +220,8 @@ class App {
|
|||||||
if(is_file(MODULE_PATH.'config'.EXT)) {
|
if(is_file(MODULE_PATH.'config'.EXT)) {
|
||||||
$config = Config::set(include MODULE_PATH.'config'.EXT);
|
$config = Config::set(include MODULE_PATH.'config'.EXT);
|
||||||
}
|
}
|
||||||
if(Config::get('app_debug')) {
|
if(Config::has('app_status')) {
|
||||||
// 读取调试模式的应用状态
|
// 读取应用状态配置文件
|
||||||
$status = Config::get('app_status');
|
$status = Config::get('app_status');
|
||||||
// 加载对应的项目配置文件
|
// 加载对应的项目配置文件
|
||||||
if(is_file(MODULE_PATH.$status.EXT))
|
if(is_file(MODULE_PATH.$status.EXT))
|
||||||
|
|||||||
1
base.php
1
base.php
@@ -27,7 +27,6 @@ defined('CACHE_PATH') or define('CACHE_PATH', RUNTIME_PATH.'Temp/');
|
|||||||
defined('VENDOR_PATH') or define('VENDOR_PATH', THINK_PATH.'Vendor/');
|
defined('VENDOR_PATH') or define('VENDOR_PATH', THINK_PATH.'Vendor/');
|
||||||
defined('EXT') or define('EXT', '.php');
|
defined('EXT') or define('EXT', '.php');
|
||||||
defined('APP_DEBUG') or define('APP_DEBUG',false); // 是否调试模式
|
defined('APP_DEBUG') or define('APP_DEBUG',false); // 是否调试模式
|
||||||
defined('RUNTIME_FILE') or define('RUNTIME_FILE', RUNTIME_PATH.'~runtime.php');
|
|
||||||
|
|
||||||
// 为了方便导入第三方类库 设置Vendor目录到include_path
|
// 为了方便导入第三方类库 设置Vendor目录到include_path
|
||||||
set_include_path(get_include_path() . PATH_SEPARATOR . VENDOR_PATH);
|
set_include_path(get_include_path() . PATH_SEPARATOR . VENDOR_PATH);
|
||||||
|
|||||||
Reference in New Issue
Block a user