视图相关配置


视图配置项

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',
],

在哪里配置

一、应用配置文件config.php

如:/app/web/config.php

<?php
return [
    'view' => [
        'layer_on' => true,
        'view_suffix' => '.php'
    ]
];

二、公共配置文件

1、单环境

/config/common.config.php

2、多环境

/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');