/data/webdev/master/framework/web/CController.php(486)
474 return $this->createActionFromMap($map,$actionID,$requestActionID,$config); 475 } 476 477 /** 478 * Handles the request whose action is not recognized. 479 * This method is invoked when the controller cannot find the requested action. 480 * The default implementation simply throws an exception. 481 * @param string $actionID the missing action name 482 * @throws CHttpException whenever this method is invoked 483 */ 484 public function missingAction($actionID) 485 { 486 throw new CHttpException(404,Yii::t('yii','The system is unable to find the requested action "{action}".', 487 array('{action}'=>$actionID==''?$this->defaultAction:$actionID))); 488 } 489 490 /** 491 * @return CAction the action currently being executed, null if no active action. 492 */ 493 public function getAction() 494 { 495 return $this->_action; 496 } 497 498 /**
#0 |
+
–
/data/webdev/master/framework/web/CController.php(270): CController->missingAction() 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); 271 } 272 273 /** 274 * Runs an action with the specified filters. 275 * A filter chain will be created based on the specified filters |
#1 |
+
–
/data/webdev/master/application/controllers/AdminController.php(202): CController->run() 197 } 198 199 $this->runModuleController($action); 200 201 202 return parent::run($action); 203 } 204 205 /** 206 * Starting with LS4, 3rd party developper can extends any of the LimeSurve controllers. 207 * |
#2 |
+
–
/data/webdev/master/framework/web/CWebApplication.php(282): AdminController->run() 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#3 |
+
–
/data/webdev/master/framework/web/CWebApplication.php(141): CWebApplication->runController() 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#4 |
+
–
/data/webdev/master/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#5 |
+
–
/data/webdev/master/index.php(192): CApplication->run() 187 require_once APPPATH . 'core/LSYii_Application' . EXT; 188 189 $config = require_once(APPPATH . 'config/internal' . EXT); 190 191 Yii::$enableIncludePath = false; 192 Yii::createApplication('LSYii_Application', $config)->run(); 193 194 /* End of file index.php */ 195 /* Location: ./index.php */ |