人人商城

config.php 441B

12345678910111213141516171819202122232425
  1. <?php
  2. if (!defined('IN_IA')) {
  3. exit('Access Denied');
  4. }
  5. return array(
  6. 'version' => '1.0',
  7. 'id' => 'messages',
  8. 'name' => '消息群发',
  9. 'v3' => true,
  10. 'menu' => array(
  11. 'plugincom' => 1,
  12. 'items' => array(
  13. array(
  14. 'title' => '消息群发',
  15. 'route' => '',
  16. 'extends' => array('messages.run', 'messages.showsign')
  17. ),
  18. array('title' => '模版设置', 'route' => 'template')
  19. )
  20. )
  21. );
  22. ?>