No Description
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.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. // 加载系统语言包
  14. /*\think\Lang::load([
  15. APP_PATH . 'admin' . DS . 'lang' . DS . request()->langset() . EXT,
  16. ]);*/
  17. $api_config = array(
  18. // +----------------------------------------------------------------------
  19. // | 异常及错误设置
  20. // +----------------------------------------------------------------------
  21. // 异常页面的模板文件
  22. //'exception_tmpl' => ROOT_PATH.'public/errpage/404.html',
  23. // errorpage 错误页面
  24. //'error_tmpl' => ROOT_PATH.'public/errpage/404.html',
  25. // 过滤不需要登录的操作
  26. 'filter_login_action' => array(
  27. // 'Admin@login', // 登录
  28. // 'Admin@logout', // 退出
  29. // 'Admin@vertify', // 验证码
  30. ),
  31. // 无需验证权限的操作
  32. 'uneed_check_action' => array(
  33. 'Base@*', // 基类
  34. 'Index@*', // 后台首页
  35. 'Ajax@*', // 所有ajax操作
  36. 'Ueditor@*', // 编辑器上传
  37. 'Uploadify@*', // 图片上传
  38. ),
  39. );
  40. $html_config = include_once 'html.php';
  41. return array_merge($api_config, $html_config);
  42. ?>