1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
-
-
-
- $global = config('tpcache');
- empty($global) && $global = tpCache('global');
-
- $web_cmsmode = isset($global['web_cmsmode']) ? $global['web_cmsmode'] : 2;
-
- $app_debug = true;
- if (1 == $web_cmsmode) {
- $app_debug = false;
- }
-
-
- return array(
-
- 'app_debug' => $app_debug,
-
- 'template' => array(
-
- 'view_path' => './application/api/template/',
-
- 'view_suffix' => 'htm',
-
- 'tpl_deny_func_list' => config('global.tpl_deny_func_list'),
-
- 'tpl_deny_php' => false,
- ),
-
- 'view_replace_str' => array(
- ),
- );
- ?>
|