core.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. return array
  3. (
  4. 'menu' => array
  5. (
  6. 'connect' => array
  7. (
  8. 'name' => '连接',
  9. 'icon' => 'contacts-line',
  10. 'sort' => '10',
  11. 'module' => 'platform',
  12. 'app' => 'sector',
  13. ),
  14. 'api_manage' => array
  15. (
  16. 'parent' => 'connect',
  17. 'name' => '接口',
  18. 'icon' => 'compasses-line',
  19. 'sort' => '1',
  20. ),
  21. 'api' => array
  22. (
  23. 'parent' => 'api_manage',
  24. 'name' => '接口管理',
  25. 'icon' => 'amazon-line',
  26. 'sort' => '1',
  27. ),
  28. 'cate' => array
  29. (
  30. 'parent' => 'api_manage',
  31. 'name' => '分类管理',
  32. 'icon' => 'folder-2-line',
  33. 'sort' => '2',
  34. ),
  35. 'platform' => array
  36. (
  37. 'parent' => 'api_manage',
  38. 'name' => '平台管理',
  39. 'icon' => 'tools-line',
  40. 'sort' => '3',
  41. ),
  42. 'platform_cert' => array
  43. (
  44. 'parent' => 'api_manage',
  45. 'name' => '平台证书管理',
  46. 'icon' => 'tools-line',
  47. 'sort' => '4',
  48. 'show' => 3,
  49. ),
  50. 'platform_ssl' => array
  51. (
  52. 'parent' => 'api_manage',
  53. 'name' => '平台加密管理',
  54. 'icon' => 'tools-line',
  55. 'sort' => '5',
  56. 'show' => 3,
  57. ),
  58. 'app' => array
  59. (
  60. 'parent' => 'api_manage',
  61. 'name' => '应用管理',
  62. 'icon' => 'file-list-2-line',
  63. 'sort' => '6',
  64. ),
  65. 'app_func' => array
  66. (
  67. 'parent' => 'api_manage',
  68. 'name' => '应用功能管理',
  69. 'icon' => 'file-list-2-line',
  70. 'sort' => '7',
  71. 'show' => 3,
  72. ),
  73. ),
  74. );