12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
-
-
-
- $html_cache_arr = array();
-
- $global = config('tpcache');
- empty($global) && $global = tpCache('global');
-
- $web_cmsmode = isset($global['web_cmsmode']) ? $global['web_cmsmode'] : 2;
-
- $app_debug = true;
- $uiset = input('param.uiset/s', 'off');
- if (1 == $web_cmsmode && 'on' != $uiset) {
- $app_debug = false;
- $html_cache_arr = config('HTML_CACHE_ARR');
- }
-
-
- return array(
-
- 'app_debug' => $app_debug,
-
- 'template' => array(
-
- 'view_path' => './template/',
-
- 'view_suffix' => 'htm',
-
- 'tpl_deny_func_list' => config('global.tpl_deny_func_list'),
-
- 'tpl_deny_php' => false,
- ),
-
- 'view_replace_str' => array(
- '__EVAL__' => '',
- ),
-
-
-
- 'HTML_CACHE_ARR'=> $html_cache_arr,
- );
- ?>
|