theme_on 模板主题开关,默认true,开启
theme 主题,默认值 default
view_suffix 模版文件后缀,默认值 .tpl.php
view_depr 视图文件分隔符
layer_on 布局开关,默认false,关闭
layer 布局文件名,默认default
'view' => [
'theme_on' => true,
'theme' => 'default',
'view_suffix' => '.tpl.php',
'view_depr' => DS,
'layer_on' => false,
'layer' => 'default',
],
如:/app/web/config.php
<?php
return [
'view' => [
'layer_on' => true,
'view_suffix' => '.php'
]
];
/config/common.config.php
/config/dev/common.config.php
/config/pro/common.config.php
/config/test/common.config.php
$this->view->set('layer_on', true);
$this->view->set('layer', 'yellow');