/var/www/vhosts/znuweb/framework/web/filters/CInlineFilter.php(46)
34 * @return CInlineFilter the created instance 35 * @throws CException if the filter method does not exist 36 */ 37 public static function create($controller,$filterName) 38 { 39 if(method_exists($controller,'filter'.$filterName)) 40 { 41 $filter=new CInlineFilter; 42 $filter->name=$filterName; 43 return $filter; 44 } 45 else 46 throw new CException(Yii::t('yii','Filter "{filter}" is invalid. Controller "{class}" does not have the filter method "filter{filter}".', 47 array('{filter}'=>$filterName, '{class}'=>get_class($controller)))); 48 } 49 50 /** 51 * Performs the filtering. 52 * This method calls the filter method defined in the controller class. 53 * @param CFilterChain $filterChain the filter chain that the filter is on. 54 */ 55 public function filter($filterChain) 56 { 57 $method='filter'.$this->name; 58 $filterChain->controller->$method($filterChain);
#0 |
+
–
/var/www/vhosts/znuweb/framework/web/filters/CFilterChain.php(73): CInlineFilter::create(PgController, "setLanguage") 68 $matched=preg_match("/\b{$actionID}\b/i",substr($filter,$pos+1))>0; 69 if(($filter[$pos]==='+')===$matched) 70 $filter=CInlineFilter::create($controller,trim(substr($filter,0,$pos))); 71 } 72 else 73 $filter=CInlineFilter::create($controller,$filter); 74 } 75 elseif(is_array($filter)) // array('path.to.class [+|- action1, action2]','param1'=>'value1',...) 76 { 77 if(!isset($filter[0])) 78 throw new CException(Yii::t('yii','The first element in a filter configuration must be the filter class.')); |
#1 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(291): CFilterChain::create(PgController, CInlineAction, array("setLanguage")) 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 /** |
#2 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("setLanguage")) 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); |
#3 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(282): CController->run("view") 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))); |
#4 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(141): CWebApplication->runController("pg/view/id/22796") 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. |
#5 |
+
–
/var/www/vhosts/znuweb/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 /** |
#6 |
+
–
/var/www/vhosts/znuweb/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(); |