fastadmin 模板布局
thinkPHP三种布局模板
fastadmin通过第三种方式:使用layout控制模板布局,加载模板
后台基类文件 application/common/controller/Backend.php
38行
/**
* 布局模板
* @var string
*/
protected $layout = 'default';
................
................
................
188行
// 如果有使用模板布局
if ($this->layout) {
$this->view->engine->layout('layout/' . $this->layout);
}
default.html
{incl
fastadmin 模板布局最先出现在Python成神之路。
共有 0 条评论