- Home
- Neufahrzeuge
- Gebrauchtfahrzeuge
- Neugeräte
- Gebrauchtgeräte
- Vermietung
- Service
- Ersatzteile und Zubehör
- Karriere
- Über Uns
/var/www/html/hos/prod/frontend/controllers/UsedVehicleController.php(145)
133 'model'=>$model 134 )); 135 136 } 137 138 139 140 141 public function actionTopoffer() { 142 143 144 $model = UsedVehicleHighlight::getTopOfferVehicle(); 145 $this->updateViewCounter($model, $model->id); 146 147 $this->render('topoffer',array( 148 'model'=>$model 149 )); 150 151 152 } 153 154 155 public function actionTopofferContacts() { 156 157 $model = UsedVehicleHighlight::getTopOfferVehicle();
#0 |
+
–
/var/www/html/hos/prod/common/lib/Yii/web/actions/CInlineAction.php(49): UsedVehicleController->actionTopoffer() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#1 |
+
–
/var/www/html/hos/prod/common/lib/Yii/web/CController.php(308): CInlineAction->runWithParams(array("language" => "de")) 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 |
+
–
/var/www/html/hos/prod/common/lib/Yii/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 |
+
–
/var/www/html/hos/prod/common/lib/Yii/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 |
+
–
/var/www/html/hos/prod/common/lib/Yii/web/CWebApplication.php(282): CController->run("topoffer") 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 |
+
–
/var/www/html/hos/prod/common/components/WebApplication.php(33): CWebApplication->runController("usedVehicle/topoffer") 28 * that Apache polls its processes to see if they're alive. This function causes 29 * Yii to respond without logging errors. 30 */ 31 public function runController($route) { 32 try { 33 parent::runController($route); 34 } catch (CHttpException $e) { 35 if (@$_SERVER['REQUEST_METHOD'] == 'OPTIONS' && @$_SERVER['REQUEST_URI'] == '*') { 36 Yii::app()->end('Hello, friend!'); 37 } else 38 throw $e; |
#6 |
+
–
/var/www/html/hos/prod/common/lib/Yii/web/CWebApplication.php(141): WebApplication->runController("usedVehicle/topoffer") 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. |
#7 |
+
–
/var/www/html/hos/prod/common/lib/Yii/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#8 |
+
–
/var/www/html/hos/prod/frontend/www/index.php(44): CApplication->run() 39 40 Yii::registerAutoloader(array("EZendAutoloader", "loadClass"), true); 41 */ 42 43 44 $app->run(); 45 46 47 48 49 /* uncomment if you wish to debug your resulting config */ |