1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- return array
- (
- 'menu' => array
- (
- 'upload' => array
- (
- 'parent' => 'set',
- 'name' => '文件上传',
- 'icon' => 'gallery-upload-line',
- 'sort' => '90',
- ),
- 'rule' => array
- (
- 'parent' => 'upload',
- 'name' => '上传规则',
- 'icon' => 'gallery-upload-line',
- 'sort' => '1',
- ),
- 'save' => array
- (
- 'parent' => 'upload',
- 'name' => '存储位置',
- 'icon' => 'save-line',
- 'sort' => '2',
- ),
- 'file' => array
- (
- 'parent' => 'upload',
- 'name' => '文件列表',
- 'icon' => 'file-2-line',
- 'sort' => '3',
- ),
- ),
- );
|