// +---------------------------------------------------------------------- // +---------------------------------------------------------------------- // | 前台控制模块 // +---------------------------------------------------------------------- namespace app\cms\controller; use app\member\controller\MemberBase; class Cmsbase extends MemberBase { //CMS模型相关配置 protected $cmsConfig = []; //初始化 protected function initialize() { parent::initialize(); //Config::set('url_common_param', true); $this->cmsConfig = get_addon_config("cms"); $this->assign("cms_config", $this->cmsConfig); if (!$this->cmsConfig['web_site_status']) { $this->error("站点已经关闭,请稍后访问~"); } } }