mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
73 lines
1.6 KiB
PHP
73 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @internal-framework
|
|
*
|
|
* 此文件为框架核心初始化数据
|
|
*
|
|
* 用途:系统快捷入口初始化
|
|
* 维护者:框架维护者
|
|
*
|
|
* 注意:此文件属于框架内核,业务开发者不应修改
|
|
*/
|
|
|
|
$ul_system_quick = array(
|
|
array(
|
|
"title" => "管理员管理",
|
|
"icon" => "fa fa-user",
|
|
"href" => "system.admin/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "角色管理",
|
|
"icon" => "fa fa-bitbucket-square",
|
|
"href" => "system.auth/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "菜单管理",
|
|
"icon" => "fa fa-tree",
|
|
"href" => "system.menu/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "节点管理",
|
|
"icon" => "fa fa-list",
|
|
"href" => "system.node/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "配置管理",
|
|
"icon" => "fa fa-asterisk",
|
|
"href" => "system.config/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "上传管理",
|
|
"icon" => "fa fa-arrow-up",
|
|
"href" => "system.uploadfile/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "商品分类",
|
|
"icon" => "fa fa-calendar-check-o",
|
|
"href" => "mall.cate/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
),
|
|
array(
|
|
"title" => "商品管理",
|
|
"icon" => "fa fa-list",
|
|
"href" => "mall.goods/index",
|
|
"sort" => 0,
|
|
"status" => 1,
|
|
)
|
|
);
|
|
|
|
return $ul_system_quick;
|