人人商城

config.php 534B

123456789101112131415161718192021222324252627
  1. <?php
  2. if (!defined('IN_IA')) {
  3. exit('Access Denied');
  4. }
  5. return array(
  6. 'version' => '1.0',
  7. 'id' => 'article',
  8. 'name' => '文章营销',
  9. 'v3' => true,
  10. 'menu' => array(
  11. 'plugincom' => 1,
  12. 'items' => array(
  13. array(
  14. 'title' => '文章管理',
  15. 'route' => '',
  16. 'extends' => array('article.record')
  17. ),
  18. array('title' => '分类管理', 'route' => 'category'),
  19. array('title' => '举报记录', 'route' => 'report'),
  20. array('title' => '其他设置', 'route' => 'set')
  21. )
  22. )
  23. );
  24. ?>