C:\xampp\htdocs\limesurvey\framework\db\ar\CActiveRecord.php(160)
148 * PHP setter magic method. 149 * This method is overridden so that AR attributes can be accessed like properties. 150 * @param string $name property name 151 * @param mixed $value property value 152 */ 153 public function __set($name,$value) 154 { 155 if($this->setAttribute($name,$value)===false) 156 { 157 if(isset($this->getMetaData()->relations[$name])) 158 $this->_related[$name]=$value; 159 else 160 parent::__set($name,$value); 161 } 162 } 163 164 /** 165 * Checks if a property value is null. 166 * This method overrides the parent implementation by checking 167 * if the named attribute is null or not. 168 * @param string $name the property name or the event name 169 * @return boolean whether the property value is null 170 */ 171 public function __isset($name) 172 {
#0 |
+
–
C:\xampp\htdocs\limesurvey\framework\db\ar\CActiveRecord.php(160): CComponent->__set("attribute_1", "41906777") 155 if($this->setAttribute($name,$value)===false) 156 { 157 if(isset($this->getMetaData()->relations[$name])) 158 $this->_related[$name]=$value; 159 else 160 parent::__set($name,$value); 161 } 162 } 163 164 /** 165 * Checks if a property value is null. |
#1 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\RegisterController.php(210): CActiveRecord->__set("attribute_1", "41906777") 205 { 206 $token->validfrom = $starttime; 207 $token->validuntil = $endtime; 208 } 209 foreach ($attributeinsertdata as $k => $v) 210 $token->$k = $v; 211 $result = $token->save(); 212 213 /** 214 $result = $connect->Execute($query, array($postfirstname, 215 $postlastname, |
#2 |
unknown(0): RegisterController->actionIndex("954223")
|
#3 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(RegisterController, array("954223")) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } |
#4 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(RegisterController, ReflectionMethod, array("surveyid" => "954223")) 43 { 44 $methodName='action'.$this->getId(); 45 $controller=$this->getController(); 46 $method=new ReflectionMethod($controller, $methodName); 47 if($method->getNumberOfParameters()>0) 48 return $this->runWithParamsInternal($controller, $method, $params); 49 else 50 return $controller->$methodName(); 51 } 52 53 } |
#5 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(309): CInlineAction->runWithParams(array("surveyid" => "954223")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#6 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(287): CController->runAction(CInlineAction) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#7 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(266): CController->runActionWithFilters(CInlineAction, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#8 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(276): CController->run("index") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#9 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(135): CWebApplication->runController("register/index/surveyid/954223") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#10 |
+
–
C:\xampp\htdocs\limesurvey\framework\base\CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#11 |
+
–
C:\xampp\htdocs\limesurvey\index.php(178): CApplication->run() 173 * 174 */ 175 require_once BASEPATH . 'yii' . EXT; 176 require_once APPPATH . 'core/LSYii_Application' . EXT; 177 178 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run(); 179 180 /* End of file index.php */ 181 /* Location: ./index.php */ |