12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- return [
-
- 'type' => 'Think',
-
- 'view_path' => '',
-
- 'view_suffix' => 'html',
-
- 'view_depr' => DIRECTORY_SEPARATOR,
-
- 'tpl_begin' => '{',
-
- 'tpl_end' => '}',
-
- 'taglib_begin' => '{',
-
- 'taglib_end' => '}',
-
- 'tpl_replace_string' => [
- '__STATIC__' => '/static',
- '__RES__' => '/res',
- '__THEMES__' => '/themes',
- '__PUBLIC__' => '/common',
- ]
- ];
|