视图相关配置


视图配置项

  1. theme_on 模板主题开关,默认true,开启
  2. theme 主题,默认值 default
  3. view_suffix 模版文件后缀,默认值 .tpl.php
  4. view_depr 视图文件分隔符
  5. layer_on 布局开关,默认false,关闭
  6. layer 布局文件名,默认default
  1. 'view' => [
  2. 'theme_on' => true,
  3. 'theme' => 'default',
  4. 'view_suffix' => '.tpl.php',
  5. 'view_depr' => DS,
  6. 'layer_on' => false,
  7. 'layer' => 'default',
  8. ],

在哪里配置

一、应用配置文件config.php

如:/app/web/config.php

  1. <?php
  2. return [
  3. 'view' => [
  4. 'layer_on' => true,
  5. 'view_suffix' => '.php'
  6. ]
  7. ];

二、公共配置文件

1、单环境

/config/common.config.php

2、多环境

/config/dev/common.config.php

/config/pro/common.config.php

/config/test/common.config.php

三、在控制器里面配置

  1. $this->view->set('layer_on', true);
  2. $this->view->set('layer', 'yellow');