Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. $plugins_config = array(
  14. //分页配置
  15. 'paginate' => array(
  16. 'type' => 'eyou',
  17. 'var_page' => 'page',
  18. 'list_rows' => 15,
  19. ),
  20. // +----------------------------------------------------------------------
  21. // | 模板设置
  22. // +----------------------------------------------------------------------
  23. //默认错误跳转对应的模板文件
  24. 'dispatch_error_tmpl' => 'public/static/common/dispatch_jump.htm',
  25. //默认成功跳转对应的模板文件
  26. 'dispatch_success_tmpl' => 'public/static/common/dispatch_jump.htm',
  27. // +----------------------------------------------------------------------
  28. // | 异常及错误设置
  29. // +----------------------------------------------------------------------
  30. // 异常页面的模板文件
  31. //'exception_tmpl' => ROOT_PATH.'public/errpage/404.html',
  32. // errorpage 错误页面
  33. //'error_tmpl' => ROOT_PATH.'public/errpage/404.html',
  34. /**假设这个访问地址是 www.xxxxx.dev/index/goods/goodsInfo/id/1.html
  35. *就保存名字为 index_goods_goodsinfo_1.html
  36. *配置成这样, 指定 模块 控制器 方法名 参数名
  37. */
  38. 'HTML_CACHE_ARR'=> array(),
  39. );
  40. $html_config = include_once 'html.php';
  41. return array_merge($plugins_config, $html_config);
  42. ?>