base.php 239 B

12345678910111213141516171819202122
  1. <?php
  2. # 一些基本配置
  3. $config['base'] = array
  4. (
  5. # 后台头部菜单
  6. 'top' => 'main/project_id-3',
  7. # 定义队列
  8. 'queue' => array
  9. (
  10. 'method' => 'db',
  11. ),
  12. );
  13. # 模板配置
  14. $config['template'] = array
  15. (
  16. );
  17. return $config;