{// 定位模块目录$module = $module ? $module . DIRECTORY_SEPARATOR : '';$path = $this->appPath . $module;if (empty($module) || empty(static::$modulesInited[$module])) {// 加载初始化文件if (is_file($path . 'init.php')) {include $path . 'init.php';} elseif (is_file($this->runtimePath . $module . 'init.php')) {include $this->runtimePath . $module . 'init.php';} else {// 加载行为扩展文件if (is_file($path . 'tags.php')) {$tags = include $path . 'tags.php';