You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

<?php
/**
* Created by PhpStorm.
* User: Wind
* Date: 2017/10/20
* Time: 16:18
*/
namespace app\common\behavior;
use think\Config;
class ModuleTest
{
public function run()
{
/* $arr = Config::get('template');
$arr = array_merge($arr, [
// 模板引擎类型 支持 php think 支持扩展
'type' => 'Think',
// 模板路径
'view_path' => __DIR__ . '/../../../themes/blue/',
// 模板后缀
'view_suffix' => 'html',
// 模板文件名分隔符
'view_depr' => "_",
// 模板引擎普通标签开始标记
'tpl_begin' => '{',
// 模板引擎普通标签结束标记
'tpl_end' => '}',
// 标签库标签开始标记
'taglib_begin' => '{',
// 标签库标签结束标记
'taglib_end' => '}',
//'taglib_pre_load' => 'app\common\Tree',
]);
Config::set(['template' => $arr]);*/
}
}