取消 MODULE_PATH 常量 用 App::$modulePath 替代

This commit is contained in:
thinkphp
2016-06-14 14:57:12 +08:00
parent 09a7b91fef
commit 5e7c8e9902
4 changed files with 13 additions and 6 deletions

View File

@@ -34,6 +34,11 @@ class App
*/
protected static $init = false;
/**
* @var string 当前模块路径
*/
public static $modulePath;
/**
* 执行应用程序
* @access public
@@ -232,7 +237,7 @@ class App
$module = '';
}
// 当前模块路径
define('MODULE_PATH', APP_PATH . ($module ? $module . DS : ''));
App::$modulePath = APP_PATH . ($module ? $module . DS : '');
// 获取控制器名
$controller = strip_tags($result[1] ?: $config['default_controller']);