config.php 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2018 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: Dean <zxxjjforever@163.com>
  10. // +----------------------------------------------------------------------
  11. if (file_exists(CMF_ROOT . "data/conf/config.php")) {
  12. $runtimeConfig = include CMF_ROOT . "data/conf/config.php";
  13. } else {
  14. $runtimeConfig = [];
  15. }
  16. $configs = [
  17. // +----------------------------------------------------------------------
  18. // | 应用设置
  19. // +----------------------------------------------------------------------
  20. // 应用命名空间
  21. 'app_namespace' => 'app',
  22. // 应用模式状态
  23. 'app_status' => APP_DEBUG ? 'debug' : 'release',
  24. // 是否支持多模块
  25. 'app_multi_module' => true,
  26. // 入口自动绑定模块
  27. 'auto_bind_module' => true,
  28. // 注册的根命名空间
  29. 'root_namespace' => ['cmf' => CMF_PATH, 'plugins' => PLUGINS_PATH, 'themes' => PLUGINS_PATH . '../themes', 'api' => CMF_ROOT . 'api/'],
  30. // 扩展函数文件
  31. 'extra_file_list' => [CMF_PATH . 'common' . EXT, THINK_PATH . 'helper' . EXT],
  32. // 默认输出类型
  33. 'default_return_type' => 'html',
  34. // 默认AJAX 数据返回格式,可选json xml ...
  35. 'default_ajax_return' => 'json',
  36. // 默认JSONP格式返回的处理方法
  37. 'default_jsonp_handler' => 'jsonpReturn',
  38. // 默认JSONP处理方法
  39. 'var_jsonp_handler' => 'callback',
  40. // 默认时区
  41. 'default_timezone' => 'PRC',
  42. // 是否开启多语言
  43. 'lang_switch_on' => false,
  44. // 默认全局过滤方法 用逗号分隔多个
  45. 'default_filter' => 'htmlspecialchars',
  46. // 默认语言
  47. 'default_lang' => 'zh-cn',
  48. // 应用类库后缀
  49. 'class_suffix' => true,
  50. // 控制器类后缀
  51. 'controller_suffix' => true,
  52. // +----------------------------------------------------------------------
  53. // | 模块设置
  54. // +----------------------------------------------------------------------
  55. // 默认模块名
  56. 'default_module' => 'user',
  57. // 禁止访问模块
  58. 'deny_module_list' => ['common'],
  59. // 默认控制器名
  60. 'default_controller' => 'Index',
  61. // 默认操作名
  62. 'default_action' => 'index',
  63. // 默认验证器
  64. 'default_validate' => '',
  65. // 默认的空控制器名
  66. 'empty_controller' => 'Error',
  67. // 自动搜索控制器
  68. 'controller_auto_search' => false,
  69. // +----------------------------------------------------------------------
  70. // | URL设置
  71. // +----------------------------------------------------------------------
  72. 'pathinfo_depr' => '/',
  73. // URL伪静态后缀
  74. 'url_html_suffix' => 'html',
  75. // URL普通方式参数 用于自动生成
  76. 'url_common_param' => false,
  77. // URL参数方式 0 按名称成对解析 1 按顺序解析
  78. 'url_param_type' => 0,
  79. // 是否开启路由
  80. 'url_route_on' => true,
  81. // 路由配置文件(支持配置多个)
  82. 'route_config_file' => ['route'],
  83. // 是否强制使用路由
  84. 'url_route_must' => false,
  85. // 域名部署
  86. 'url_domain_deploy' => false,
  87. // 域名根,如thinkphp.cn
  88. 'url_domain_root' => '',
  89. // 是否自动转换URL中的控制器和操作名
  90. 'url_convert' => true,
  91. // 默认的访问控制器层
  92. 'url_controller_layer' => 'controller',
  93. // 表单请求类型伪装变量
  94. 'var_method' => '_method',
  95. // +----------------------------------------------------------------------
  96. // | 模板设置
  97. // +----------------------------------------------------------------------
  98. 'template' => [
  99. // 模板引擎类型 支持 php think 支持扩展
  100. 'type' => 'Think',
  101. // 视图根目录
  102. 'view_base' => '',
  103. // 模板路径
  104. 'view_path' => '',
  105. // 模板后缀
  106. 'view_suffix' => 'html',
  107. // 模板文件名分隔符
  108. 'view_depr' => DS,
  109. // 模板引擎普通标签开始标记
  110. 'tpl_begin' => '{',
  111. // 模板引擎普通标签结束标记
  112. 'tpl_end' => '}',
  113. // 标签库标签开始标记
  114. 'taglib_begin' => '<',
  115. // 标签库标签结束标记
  116. 'taglib_end' => '>',
  117. 'taglib_build_in' => 'cmf\lib\taglib\Cmf,cx',
  118. 'tpl_cache' => APP_DEBUG ? false : true,
  119. 'tpl_deny_php' => false
  120. ],
  121. // 视图输出字符串内容替换
  122. 'view_replace_str' => [],
  123. // 默认跳转页面对应的模板文件
  124. 'dispatch_success_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl',
  125. 'dispatch_error_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl',
  126. // +----------------------------------------------------------------------
  127. // | 异常及错误设置
  128. // +----------------------------------------------------------------------
  129. // 异常页面的模板文件
  130. 'exception_tmpl' => THINK_PATH . 'tpl' . DS . 'think_exception.tpl',
  131. // 错误显示信息,非调试模式有效
  132. 'error_message' => '页面错误!请稍后再试~',
  133. // 显示错误信息
  134. 'show_error_msg' => false,
  135. // 异常处理handle类 留空使用 \think\exception\Handle
  136. 'exception_handle' => '',
  137. // +----------------------------------------------------------------------
  138. // | 日志设置
  139. // +----------------------------------------------------------------------
  140. 'log' => [
  141. // 日志记录方式,内置 file socket 支持扩展
  142. 'type' => 'File',
  143. // 日志保存目录
  144. 'path' => LOG_PATH,
  145. // 日志记录级别
  146. 'level' => [],
  147. ],
  148. // +----------------------------------------------------------------------
  149. // | Trace设置 开启 app_trace 后 有效
  150. // +----------------------------------------------------------------------
  151. 'trace' => [
  152. // 内置Html Console 支持扩展
  153. 'type' => 'Html',
  154. ],
  155. // +----------------------------------------------------------------------
  156. // | 缓存设置
  157. // +----------------------------------------------------------------------
  158. 'cache' => [
  159. // 驱动方式
  160. 'type' => 'File',
  161. // 缓存保存目录
  162. 'path' => CACHE_PATH,
  163. // 缓存前缀
  164. 'prefix' => 'battery_',
  165. // 缓存有效期 0表示永久缓存
  166. 'expire' => 0,
  167. ],
  168. // +----------------------------------------------------------------------
  169. // | 会话设置
  170. // +----------------------------------------------------------------------
  171. 'session' => [
  172. 'id' => '',
  173. // SESSION_ID的提交变量,解决flash上传跨域
  174. 'var_session_id' => '',
  175. // SESSION 前缀
  176. 'prefix' => 'battery_',
  177. // 驱动方式 支持redis memcache memcached
  178. 'type' => '',
  179. // 是否自动开启 SESSION
  180. 'auto_start' => true,
  181. ],
  182. // +----------------------------------------------------------------------
  183. // | Cookie设置
  184. // +----------------------------------------------------------------------
  185. 'cookie' => [
  186. // cookie 名称前缀
  187. 'prefix' => 'battery_',
  188. // cookie 保存时间
  189. 'expire' => 0,
  190. // cookie 保存路径
  191. 'path' => '/',
  192. // cookie 有效域名
  193. 'domain' => '',
  194. // cookie 启用安全传输
  195. 'secure' => false,
  196. // httponly设置
  197. 'httponly' => '',
  198. // 是否使用 setcookie
  199. 'setcookie' => true,
  200. ],
  201. // +----------------------------------------------------------------------
  202. // | 数据库设置
  203. // +----------------------------------------------------------------------
  204. 'database' => [
  205. // 数据库调试模式
  206. 'debug' => true,
  207. // 数据集返回类型
  208. 'resultset_type' => 'collection',
  209. // 自动写入时间戳字段
  210. 'auto_timestamp' => false,
  211. // 时间字段取出后的默认时间格式
  212. 'datetime_format' => false,
  213. // 是否需要进行SQL性能分析
  214. 'sql_explain' => false,
  215. ],
  216. //分页配置
  217. 'paginate' => [
  218. 'type' => '\cmf\paginator\Bootstrap',
  219. 'var_page' => 'page',
  220. 'list_rows' => 15,
  221. ],
  222. 'queue' => [
  223. 'connector' => '\cmf\queue\connector\Database'
  224. ],
  225. // +----------------------------------------------------------------------
  226. // | CMF 设置
  227. // +----------------------------------------------------------------------
  228. 'cmf_theme_path' => 'themes/',
  229. 'cmf_default_theme' => 'battery',
  230. ];
  231. return array_merge($configs, $runtimeConfig);