mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +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) {
|
||||
foreach ($data as &$vo) {
|
||||
if ($vo['url'] !== '#') {
|
||||
$vo['url'] = url($vo['url']);
|
||||
}
|
||||
($vo['url'] !== '#') && ($vo['url'] = url($vo['url']));
|
||||
$vo['ids'] = join(',', Tools::getArrSubIds($data, $vo['id']));
|
||||
}
|
||||
$data = Tools::arr2table($data);
|
||||
|
@ -57,7 +57,7 @@ class Tools {
|
||||
$tree[] = $_tree;
|
||||
if (!empty($sub)) {
|
||||
$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;
|
||||
@ -103,7 +103,7 @@ class Tools {
|
||||
$tree[] = $_tree;
|
||||
if (!empty($sub)) {
|
||||
$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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user