예제 #1
0
파일: Items.php 프로젝트: ktrzos/plethora
 /**
  * ACTION - Contents list.
  *
  * @access   public
  * @return   View
  * @throws   Exception\Code404
  * @throws   Exception\Fatal
  * @since    1.2.0-dev
  * @version  1.2.0-dev
  */
 public function actionList()
 {
     $sMenuID = Router::getParam('id');
     if ($sMenuID === FALSE) {
         throw new Exception\Code404();
     }
     return parent::actionList();
 }
예제 #2
0
파일: Menu.php 프로젝트: ktrzos/plethora
 /**
  * ACTION - Contents list.
  *
  * @access   public
  * @return   View
  * @since    1.1.2-dev, 2015-08-19
  * @version  1.1.2-dev, 2015-08-19
  */
 public function actionList()
 {
     $view = parent::actionList();
     $this->addListOption(Route::backendUrl('menu_items', 'list', '{id}'), __('items list'), 'list-alt');
     return $view;
 }