12345678910111213141516171819202122232425262728293031 |
- <?php
- return [
-
- 'type' => 'Think',
-
- 'auto_rule' => 1,
-
- 'view_dir_name' => 'view',
-
- 'view_suffix' => 'html',
-
- 'view_depr' => DIRECTORY_SEPARATOR,
-
- 'tpl_begin' => '{',
-
- 'tpl_end' => '}',
-
- 'taglib_begin' => '{',
-
- 'taglib_end' => '}',
- 'tpl_cache' => false,
- 'tpl_replace_string' => [
- 'INSTALL_IMG' => '/install/img',
- 'INSTALL_CSS' => '/install/css',
- 'INSTALL_JS' => '/install/js',
- ]
- ];
|