人人商城

config.php 423B

12345678910111213141516171819202122
  1. <?php
  2. if (!defined('IN_IA')) {
  3. exit('Access Denied');
  4. }
  5. return array(
  6. 'version' => '1.0',
  7. 'id' => 'diyform',
  8. 'name' => '自定义表单',
  9. 'v3' => true,
  10. 'menu' => array(
  11. 'plugincom' => 1,
  12. 'items' => array(
  13. array('title' => '模版管理', 'route' => 'temp'),
  14. array('title' => '分类管理', 'route' => 'category'),
  15. array('title' => '基础设置', 'route' => 'set')
  16. )
  17. )
  18. );
  19. ?>