人人商城

config.php 425B

12345678910111213141516171819202122232425262728
  1. <?php
  2. echo "\r\n";
  3. if (!defined('IN_IA')) {
  4. exit('Access Denied');
  5. }
  6. return array(
  7. 'version' => '1.0',
  8. 'id' => 'postera',
  9. 'name' => '活动海报',
  10. 'v3' => true,
  11. 'menu' => array(
  12. 'title' => '页面',
  13. 'plugincom' => 1,
  14. 'icon' => 'page',
  15. 'items' => array(
  16. array(
  17. 'title' => '海报管理',
  18. 'route' => '',
  19. 'extends' => array('postera.scan')
  20. )
  21. )
  22. )
  23. );
  24. ?>