base.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. $config['base'] = array
  3. (
  4. 'name' => 'SPAC工厂',
  5. //'name' => '橙猫供应链平台',
  6. 'version' => '1.0.0 Beta',
  7. 'lang_set' => array('zh-cn' => '简体中文', 'en' => '英文'),
  8. # 上线状态
  9. 'status' => array
  10. (
  11. 1 => '上架',
  12. 2 => '下架',
  13. ),
  14. # 加密key
  15. 'encode_key' => 'dreamland1985',
  16. # 站点使用邮箱还是手机作为主账号
  17. 'account' => 'mobile',//SMS_228142347
  18. # 发送邮件的配置
  19. 'email' => array
  20. (
  21. 'pop' => 'pop.qq.com',
  22. 'smtp' => 'smtp.qiye.aliyun.com',
  23. 'imap' => 'imap.qq.com',
  24. 'username' => 'zsmazq@zsma.com.cn',
  25. 'password' => 'Zsma123886',
  26. 'from' => array('zsmazq@zsma.com.cn', '厨人易料'),
  27. 'agent' => array
  28. (
  29. 'title' => '厨人易料代理商邮箱认证',
  30. 'link' => 'agent/lib/email.act',
  31. 'content' => '尊敬的厨人易料用户:
  32. <br /><br />
  33. 您好!
  34. <br /><br />
  35. 请点击下方链接进行邮箱认证
  36. <br /><br />
  37. 【{link}】
  38. <br /><br />
  39. 如果上面的链接无法点击,您也可以复制链接到您的浏览器内打开,完成邮箱认证(链接有效期一天)。',
  40. ),
  41. ),
  42. # 注册成功后,调取的接口
  43. 'regAction' => '',
  44. );
  45. # 前台通用配置
  46. $config['template'] = array
  47. (
  48. # 静态页面目录
  49. //'assets' => array('pc', 'mobile'),
  50. 'assets' => 'pc',
  51. # 模板编译器目录
  52. 'template' => 'pc',
  53. # 模板html文件的所在目录,默认为html
  54. 'path' => '',
  55. 'replace' => array
  56. (
  57. 'css' => 'css/',
  58. 'js' => 'js/',
  59. 'images' => 'images/',
  60. 'fonts' => 'fonts/',
  61. 'img' => 'img/',
  62. 'script' => 'script/',
  63. 'static' => 'static/',
  64. ),
  65. # 编译器与模板对应关系目录,定义之后,代表可以完全不改动前端的代码,可以为空,为空则一一对应,参考manage
  66. 'relation' => array
  67. (
  68. # 首页启动屏幕
  69. 'home' => 'index',
  70. ),
  71. );
  72. return $config;