mirror of https://gitee.com/karson/fastadmin.git
25 lines
441 B
PHP
25 lines
441 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 单页管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
* @remark 用于管理普通的单页面,通常用于关于我们、联系我们、商务合作等单一页面
|
|
*/
|
|
class Page extends Backend
|
|
{
|
|
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = model('Page');
|
|
}
|
|
|
|
}
|