/base/app/www/protected/modules/www/controllers/BlogController.php(116)
104 * @throws CException 105 * @throws CHttpException 106 */ 107 public function actionOverView() { 108 try { 109 $command = new CommandGetBlogOverview([ 110 111 ]); 112 $command->execute(); 113 $lastOverview = $command->getModel(); 114 } 115 catch (ModelException $e){ 116 throw new CHttpException('Страница не найдена'); 117 } 118 119 if (!$lastOverview){ 120 throw new CHttpException('Страница не найдена'); 121 } 122 $this->actionSingle($lastOverview->id); 123 } 124 /** 125 * blog/[id] 126 * @param $id 127 * @throws CException 128 */
#0 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(49): BlogController->actionOverView() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#1 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array()) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#2 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#3 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
#4 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(131): CFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#5 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
#6 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(131): CFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#7 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
#8 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(131): CFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#9 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
#10 |
+
–
/base/app/vendor/inlearno/booking-components/yii/ResponsibleController.php(52): CController->runActionWithFilters(CInlineAction, array(array("FilterCounters"), array("FilterFrontRedirect"), array("FilterUtm"))) 47 $filters = $action->getFilters(); 48 } else { 49 $filters = $this->filters(); 50 } 51 52 $this->runActionWithFilters($action, $filters); 53 54 $parent->afterControllerAction($this, $action); 55 } 56 } else { 57 $this->missingAction($actionID); |
#11 |
+
–
/base/app/vendor/inlearno/booking-components/yii/WebApplication.php(75): ResponsibleController->run("overview") 70 list($controller,$actionID)=$ca; 71 $oldController=$this->getController(); 72 $this->setController($controller); 73 $this->setOriginalController($controller); 74 $controller->init(); 75 $controller->run($actionID); 76 $this->setController($oldController); 77 } 78 else 79 throw new CHttpException(Response::ERR_CODE_NOT_FOUND,Yii::t('yii','Unable to resolve the request "{route}".', 80 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 |
+
–
/base/app/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): WebApplication->runController("www/blog/overview") 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. |
#13 |
+
–
/base/app/vendor/yiisoft/yii/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 /** |
#14 |
+
–
/base/app/www/sites/public.php(10): CApplication->run() 05 * Date: 23.11.2018 06 * Time: 21:00 07 */ 08 09 require_once('../protected/setup-public.php'); 10 Yii::app()->run(); |