/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/db/ar/CActiveRecord.php(145)
133 */ 134 public function __get($name) 135 { 136 if(isset($this->_attributes[$name])) 137 return $this->_attributes[$name]; 138 elseif(isset($this->getMetaData()->columns[$name])) 139 return null; 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. 151 * @param string $name property name 152 * @param mixed $value property value 153 */ 154 public function __set($name,$value) 155 { 156 if($this->setAttribute($name,$value)===false) 157 {
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/db/ar/CActiveRecord.php(145): CComponent->__get("token") 140 elseif(isset($this->_related[$name])) 141 return $this->_related[$name]; 142 elseif(isset($this->getMetaData()->relations[$name])) 143 return $this->getRelated($name); 144 else 145 return parent::__get($name); 146 } 147 148 /** 149 * PHP setter magic method. 150 * This method is overridden so that AR attributes can be accessed like properties. |
#1 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/models/SurveyDynamic.php(616): CActiveRecord->__get("token") 611 // Basic filters 612 $criteria->compare('t.id',$this->id, true); 613 $criteria->compare('t.lastpage',$this->lastpage, true); 614 $criteria->compare('t.submitdate',$this->submitdate, true); 615 $criteria->compare('t.startlanguage',$this->startlanguage, true); 616 $criteria->compare('t.token',$this->token, true); 617 618 // Completed filters 619 if($this->completed_filter == "Y") 620 { 621 $criteria->addCondition('t.submitdate IS NOT NULL'); |
#2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/views/admin/responses/listResponses_view.php(153): SurveyDynamic->search() 148 ); 149 } 150 } 151 152 $this->widget('bootstrap.widgets.TbGridView', array( 153 'dataProvider' => $model->search(), 154 'filter' => $model, 155 'columns' => $aColumns, 156 'itemsCssClass' =>'table-striped', 157 'id' => 'responses-grid', 158 'ajaxUpdate' => false, |
#3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CBaseController.php(126): require("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/...") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/...", array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(869): CBaseController->renderFile("/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/...", array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...), true) 864 */ 865 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/core/Survey_Common_Action.php(314): CController->renderPartial("/admin/responses/listResponses_view", array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...)) 309 { 310 if (empty($sViewKey) || !in_array($sViewKey, array('message', 'output'))) 311 { 312 if (is_numeric($sViewKey)) 313 { 314 Yii::app()->getController()->renderPartial($sViewPath . $viewUrl, $aData); 315 } 316 elseif (is_array($viewUrl)) 317 { 318 foreach ($viewUrl as $aSubData) 319 { |
#7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/admin/responses.php(1157): Survey_Common_Action->_renderWrappedTemplate("responses", array("listResponses_view"), array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...)) 1152 $aData['display']['menu_bars'] = false; 1153 $aData['display']['menu_bars']['browse'] = gT('Browse responses'); // browse is independent of the above 1154 $surveyinfo = Survey::model()->findByPk($iSurveyId)->surveyinfo; 1155 $aData["surveyinfo"] = $surveyinfo; 1156 $aData['title_bar']['title'] = gT('Browse responses').': '.$surveyinfo['surveyls_title']; 1157 parent::_renderWrappedTemplate('responses', $aViewUrls, $aData); 1158 } 1159 1160 } |
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/admin/responses.php(454): responses->_renderWrappedTemplate("responses", array("listResponses_view"), array("iSurveyId" => 975921, "surveyid" => "975921", "imageurl" => "/images", "action" => null, ...)) 449 $aData['model'] = $model; 450 $aData['bHaveToken'] = $bHaveToken; 451 $aData['aDefaultColumns'] = $model->defaultColumns; // Some specific columns 452 $aData['pageSize'] = Yii::app()->user->getState('pageSize',Yii::app()->params['defaultPageSize']); // Page size 453 454 $this->_renderWrappedTemplate('responses', $aViewUrls, $aData); 455 } 456 else 457 { 458 Yii::app()->setFlashMessage(gT("You do not have permission to access this page."),'error'); 459 $this->getController()->redirect(array('admin/survey','sa'=>'view','surveyid'=>$iSurveyId)); |
#9 |
unknown(0): responses->browse("975921")
|
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(responses, array("975921")) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/core/Survey_Common_Action.php(101): CAction->runWithParamsInternal(responses, ReflectionMethod, array("surveyid" => "975921", "browselang" => "fr", "sa" => "browse", "iSurveyId" => "975921", ...)) 096 $oMethod = new ReflectionMethod($this, $sDefault); 097 } 098 099 // We're all good to go, let's execute it 100 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 101 return parent::runWithParamsInternal($this, $oMethod, $params); 102 } 103 104 /** 105 * Some functions have different parameters, which are just an alias of the 106 * usual parameters we're getting in the url. This function just populates |
#12 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("surveyid" => "975921", "browselang" => "fr", "sa" => "browse")) 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; |
#13 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(286): CController->runAction(responses) 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(); |
#14 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(265): CController->runActionWithFilters(responses, 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); |
#15 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/AdminController.php(160): CController->run("responses") 155 $this->redirect(array('/admin/authentication/sa/login')); 156 } 157 158 } 159 160 return parent::run($action); 161 } 162 163 /** 164 * Routes all the actions to their respective places 165 * |
#16 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(282): AdminController->run("responses") 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))); |
#17 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/responses/sa/browse") 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. |
#18 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/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 /** |
#19 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/index.php(212): CApplication->run() 207 die (sprintf('%s should be writable by the webserver (766 or 776).', $sDefaultRuntimePath)); 208 } 209 } 210 211 Yii::$enableIncludePath = false; 212 Yii::createApplication('LSYii_Application', $config)->run(); 213 214 /* End of file index.php */ 215 /* Location: ./index.php */ |