<?php
// | 前台控制模块
namespace app\index\controller;
use app\common\controller\Homebase;
class IndexBase extends Homebase
{
//CMS模型相关配置
protected $config = [];
//初始化
protected function initialize()
{
parent::initialize();
$this->cmsConfig = cache("Cms_Config");
$this->assign($this->cmsConfig);
if (config('web_site_status_text') == 1) {
$this->error("站点维护中,请稍后再来~");
}
}
}