예제 #1
0
파일: Base.php 프로젝트: btweedy/foresmo
 /**
  * 
  * If the action doesn't map to a method, place the action back on top of
  * the info array and use the default action in its place.
  * 
  * @return void
  * 
  */
 protected function _fixAction()
 {
     parent::_fixAction();
     if (!$this->_getActionMethod($this->_action)) {
         array_unshift($this->_info, $this->_action);
         $this->_action = $this->_action_default;
     }
 }