mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
从数据库中生成菜单
This commit is contained in:
parent
021d983583
commit
bc84d1bb27
@ -52,9 +52,7 @@ class Menu extends BasicAdmin {
|
|||||||
*/
|
*/
|
||||||
protected function _index_data_filter(&$data) {
|
protected function _index_data_filter(&$data) {
|
||||||
foreach ($data as &$vo) {
|
foreach ($data as &$vo) {
|
||||||
if ($vo['url'] !== '#') {
|
($vo['url'] !== '#') && ($vo['url'] = url($vo['url']));
|
||||||
$vo['url'] = url($vo['url']);
|
|
||||||
}
|
|
||||||
$vo['ids'] = join(',', Tools::getArrSubIds($data, $vo['id']));
|
$vo['ids'] = join(',', Tools::getArrSubIds($data, $vo['id']));
|
||||||
}
|
}
|
||||||
$data = Tools::arr2table($data);
|
$data = Tools::arr2table($data);
|
||||||
|
@ -57,7 +57,7 @@ class Tools {
|
|||||||
$tree[] = $_tree;
|
$tree[] = $_tree;
|
||||||
if (!empty($sub)) {
|
if (!empty($sub)) {
|
||||||
$sub_array = self::arr2table($sub, $id, $pid, $path, $_tree[$path]);
|
$sub_array = self::arr2table($sub, $id, $pid, $path, $_tree[$path]);
|
||||||
$tree = array_merge($tree, (Array) $sub_array);
|
$tree = array_merge($tree, (Array)$sub_array);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $tree;
|
return $tree;
|
||||||
@ -103,7 +103,7 @@ class Tools {
|
|||||||
$tree[] = $_tree;
|
$tree[] = $_tree;
|
||||||
if (!empty($sub)) {
|
if (!empty($sub)) {
|
||||||
$sub_array = self::node2table($sub, $node, $pnode, $path, $_tree[$path . "_node"]);
|
$sub_array = self::node2table($sub, $node, $pnode, $path, $_tree[$path . "_node"]);
|
||||||
$tree = array_merge($tree, (Array) $sub_array);
|
$tree = array_merge($tree, (Array)$sub_array);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $tree;
|
return $tree;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user