1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- return array
- (
- 'menu' => array
- (
- 'connect' => array
- (
- 'name' => '万接',
- 'icon' => 'contacts-line',
- 'sort' => '10',
- 'module' => 'platform',
- 'app' => 'api',
- ),
- 'api_manage' => array
- (
- 'parent' => 'connect',
- 'name' => '核心设置',
- 'icon' => 'compasses-line',
- 'sort' => '1',
- ),
- 'platform' => array
- (
- 'parent' => 'api_manage',
- 'name' => '平台管理',
- 'icon' => 'tools-line',
- 'sort' => '3',
- ),
- 'platform_api' => array
- (
- 'parent' => 'api_manage',
- 'name' => '平台接口管理',
- 'icon' => 'tools-line',
- 'sort' => '4',
- 'show' => 3,
- ),
- 'platform_cert' => array
- (
- 'parent' => 'api_manage',
- 'name' => '平台证书管理',
- 'icon' => 'tools-line',
- 'sort' => '5',
- 'show' => 3,
- ),
- 'platform_ssl' => array
- (
- 'parent' => 'api_manage',
- 'name' => '平台加密管理',
- 'icon' => 'tools-line',
- 'sort' => '6',
- 'show' => 3,
- ),
- 'app' => array
- (
- 'parent' => 'api_manage',
- 'name' => '应用管理',
- 'icon' => 'file-list-2-line',
- 'sort' => '7',
- ),
- 'app_func' => array
- (
- 'parent' => 'api_manage',
- 'name' => '应用功能管理',
- 'icon' => 'file-list-2-line',
- 'sort' => '8',
- 'show' => 3,
- ),
- 'account' => array
- (
- 'parent' => 'api_manage',
- 'name' => '账户管理',
- 'icon' => 'contacts-line',
- 'sort' => '9',
- ),
- 'account_cert' => array
- (
- 'parent' => 'api_manage',
- 'name' => '账户证书',
- 'icon' => 'contacts-line',
- 'sort' => '10',
- 'show' => 3,
- ),
- ),
- );
|