123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- // +----------------------------------------------------------------------
- // | Yzncms [ 御宅男工作室 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2018 http://yzncms.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 御宅男 <530765310@qq.com>
- // +----------------------------------------------------------------------
-
- // +----------------------------------------------------------------------
- // | 初始化配置
- // +----------------------------------------------------------------------
- namespace app\common\behavior;
-
- use think\facade\Config;
- use think\facade\Env;
-
- /**
- * 初始化配置信息行为
- * 将系统配置信息合并到本地配置
- * @package app\common\behavior
- */
- class Common
- {
-
- /**
- * 执行行为 run方法是Behavior唯一的接口
- * @access public
- * @param mixed $params 行为参数
- * @return void
- */
- public function run($params)
- {
- if (Config::get('app_debug')) {
- // 如果是开发模式那么将异常模板修改成官方的
- Config::set('exception_tmpl', Env::get('think_path') . 'tpl/think_exception.tpl');
- }
- }
-
- }
|