コード例 #1
0
 /**
  * 更新菜单
  */
 public function menuAction()
 {
     $result = \Model\Menu::updateMenu();
     if ($result['status'] == false) {
         $this->error($result['mes']);
     }
     $this->success($GLOBALS['_LANG']['MENU']['UPDATE_MENU_SUCCESS'], $this->url('Team-Index-menuList'));
 }
コード例 #2
0
ファイル: Index.class.php プロジェクト: Myazure/PESCMS2
 /**
  * 更新菜单
  */
 public function menuAction()
 {
     $result = \Model\Menu::updateMenu();
     $this->success('更新菜单成功', $this->url(GROUP . '-Index-menuList'));
 }