1234567891011121314151617181920212223242526272829303132333435 |
- <?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\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("站点已经关闭,请稍后访问~");
- }
- }
- }
|