From 2f9f5261f1ce9b23bd843c02c82e3701578159f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 23 Feb 2017 16:27:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=8A=82=E7=82=B9=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Menu.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index f2a66f69a..c84a89ce0 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -66,6 +66,7 @@ class Menu extends BasicAdmin { */ protected function _form_filter(&$vo) { if ($this->request->isGet()) { + // 上级菜单处理 $_menus = Db::name($this->table)->where('status', '1')->order('sort desc,id desc')->select(); $_menus[] = ['title' => '顶级菜单', 'id' => '0', 'pid' => '-1']; $menus = Tools::arr2table($_menus); @@ -81,7 +82,15 @@ class Menu extends BasicAdmin { } } } - $this->assign('nodes', Node::getNodeTree(APP_PATH)); + // 读取系统功能节点 + $nodes = Node::getNodeTree(APP_PATH); + $denyAll = Db::name('SystemNode')->where('is_menu', '0')->column('node'); + foreach ($nodes as $key => $vo) { + if (in_array($vo, $denyAll)) { + unset($nodes[$key]); + } + } + $this->assign('nodes', array_values($nodes)); $this->assign('menus', $menus); } }