30 lines
956 B
PHP
30 lines
956 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 海豚PHP框架 [ DolphinPHP ]
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: http://dolphinphp.com
|
|
// +----------------------------------------------------------------------
|
|
// | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
/**
|
|
* 菜单信息
|
|
*/
|
|
return [
|
|
[
|
|
'title' => '活动',
|
|
'icon' => 'fa fa-fw fa-font',
|
|
'url_type' => 'module_admin',
|
|
'url_value' => 'activity/index/index',
|
|
'url_target' => '_self',
|
|
'online_hide' => 0,
|
|
'sort' => 100,
|
|
'child' => [],
|
|
],
|
|
|
|
];
|
|
|