mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-06 23:02:48 +08:00
App类module方法改为public 可以在闭包中直接调用
This commit is contained in:
@@ -192,8 +192,11 @@ class App
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 执行 模块/控制器/操作
|
// 执行 模块/控制器/操作
|
||||||
private static function module($result, $config)
|
public static function module($result, $config)
|
||||||
{
|
{
|
||||||
|
if (is_string($result)) {
|
||||||
|
$result = explode('/', $result);
|
||||||
|
}
|
||||||
if (APP_MULTI_MODULE) {
|
if (APP_MULTI_MODULE) {
|
||||||
// 多模块部署
|
// 多模块部署
|
||||||
$module = strtolower($result[0] ?: $config['default_module']);
|
$module = strtolower($result[0] ?: $config['default_module']);
|
||||||
|
|||||||
Reference in New Issue
Block a user