Пример #1
0
 /**
  * 菜单移动
  * @return boolean
  */
 public function moveAction()
 {
     $iMenuID = $this->getParam('id');
     $iDirect = $this->getParam('direct');
     $aMenu = Model_Menu::getDetail($iMenuID);
     $iCnt = Model_Menu::changeOrder($aMenu, $iDirect);
     return $this->showMsg($iCnt, true);
 }