规范调整

This commit is contained in:
thinkphp
2015-10-04 22:48:57 +08:00
parent 3b21161c0a
commit c14da999a6
10 changed files with 46 additions and 30 deletions

View File

@@ -13,10 +13,14 @@ namespace think;
class View
{
protected $engine = null; // 模板引擎实例
protected $theme = ''; // 模板主题名称
protected $data = []; // 模板变量
protected $config = [ // 视图参数
// 模板引擎实例
protected $engine = null;
// 模板主题名称
protected $theme = '';
// 模板变量
protected $data = [];
// 视图参数
protected $config = [
'theme_on' => false,
'auto_detect_theme' => false,
'var_theme' => 't',