/home/t/timonovo/timonovo7/public_html/protected/controllers/MainController.php(138)
126 $monthLabel = $this->getMonthLabel($month); 127 if (!preg_match("/^\d{4}$/", $year) || $monthLabel === "") 128 throw new CHttpException(404); 129 $this->pageTitle .= " (" . $monthLabel . ", " . $year . ")"; 130 131 $path = sprintf("%s%s%04d%s%02d", $newsPath, DIRECTORY_SEPARATOR, $year, DIRECTORY_SEPARATOR, $month); 132 if (!is_dir($path)) 133 throw new CHttpException(404); 134 $days = $this->getNewsDays($path); 135 foreach ($days as $day) 136 { 137 if (count($news) >= self::NEWS_PER_PAGE) 138 throw new Exception(); 139 140 $dayPath = sprintf("%s%s%s", $path, DIRECTORY_SEPARATOR, $day); 141 $day = intval(mb_substr($day, 0, 2, Yii::app()->charset)); 142 $newsItem = $this->getNewsItem($dayPath); 143 if ($newsItem === false) 144 continue; 145 146 array_push($news, array_merge($newsItem, array( 147 'year' => $year, 148 'month' => $month, 149 'day' => $day 150 )));
#0 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/actions/CInlineAction.php(49): MainController->actionNews() 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 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/CController.php(308): CInlineAction->runWithParams(array("month" => "05", "year" => "2016")) 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 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#4 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/CWebApplication.php(282): CController->run("news") 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))); |
#5 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/web/CWebApplication.php(141): CWebApplication->runController("main/news") 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. |
#6 |
+
–
/home/t/timonovo/timonovo7/public_html/yii-1.1.19/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 /** |
#7 |
+
–
/home/t/timonovo/timonovo7/public_html/index.php(13): CApplication->run() 08 defined('YII_DEBUG') or define('YII_DEBUG',true); 09 // specify how many levels of call stack should be shown in each log message 10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 11 12 require_once($yii); 13 Yii::createWebApplication($config)->run(); |