/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/qanda_helper.php(3069)
3057 $integeronly=1; 3058 } 3059 else 3060 { 3061 $integeronly=0; 3062 } 3063 3064 if(!$sliders) 3065 { 3066 $sRows .= Yii::app()->getController()->renderPartial('/survey/questions/multiplenumeric/rows/input/answer_row', array( 3067 'qid' => $ia[0], 3068 'extraclass' => $extraclass, 3069 'answertypeclass' => $answertypeclass, 3070 'sDisplayStyle' => $sDisplayStyle, 3071 'kpclass' => $kpclass, 3072 'alert' => $alert, 3073 'theanswer' => $theanswer, 3074 'labelname' => 'answer'.$myfname, 3075 'prefixclass' => $prefixclass, 3076 'prefix' => $prefix, 3077 'suffix' => $suffix, 3078 'tiwidth' => $tiwidth, 3079 'myfname' => $myfname, 3080 'dispVal' => $sValue, 3081 'maxlength' => $maxlength,
| #0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/qanda_helper.php(212): do_multiplenumeric(array("13094", "649162X499X13094", "Q", "Multiples entrées numériques", ...)) 207 case 'Q': //MULTIPLE SHORT TEXT 208 $values=do_multipleshorttext($ia); 209 break; 210 211 case 'K': //MULTIPLE NUMERICAL QUESTION 212 $values=do_multiplenumeric($ia); 213 break; 214 215 case 'N': //NUMERICAL QUESTION TYPE 216 $values=do_numerical($ia); 217 break; |
| #1 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/SurveyRuntimeHelper.php(1025): retrieveAnswers(array("13094", "649162X499X13094", "Q", "Multiples entrées numériques", ...), "649162") 1020 } 1021 1022 //Get the answers/inputnames 1023 // TMSW - can content of retrieveAnswers() be provided by LEM? Review scope of what it provides. 1024 // TODO - retrieveAnswers is slow - queries database separately for each question. May be fixed in _CI or _YII ports, so ignore for now 1025 list($plus_qanda, $plus_inputnames) = retrieveAnswers($ia, $surveyid); 1026 if ($plus_qanda) 1027 { 1028 $plus_qanda[] = $ia[4]; 1029 $plus_qanda[] = $ia[6]; // adds madatory identifyer for adding mandatory class to question wrapping div 1030 // Add a finalgroup in qa array , needed for random attribute : TODO: find a way to have it in new quanda_helper in 2.1 |
| #2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/survey/index.php(614): SurveyRuntimeHelper->run("649162",
array("surveyid" => "649162", "thissurvey" => array("template"
=> "default", "language" => "en", "sid" => "649162", "owner_id"
=> "1", ...), "thisstep" => "1", "tokensexist" => 0, ...)) 609 //Send local variables to the appropriate survey type 610 unset($redata); 611 $redata = compact(array_keys(get_defined_vars())); 612 Yii::import('application.helpers.SurveyRuntimeHelper'); 613 $tmp = new SurveyRuntimeHelper(); 614 $tmp->run($surveyid,$redata); 615 616 if (App()->request->getPost('saveall') || isset($flashmessage)) 617 { 618 App()->clientScript->registerScript("saveflashmessage","alert('".gT("Your responses were successfully saved.","js")."');",CClientScript::POS_READY); 619 } |
| #3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/survey/index.php(82): index->action() 77 App()->getClientScript()->reset(); 78 return $buffer; 79 }); 80 81 ob_implicit_flush(false); 82 $this->action(); 83 ob_flush(); 84 } 85 86 function action() 87 { |
| #4 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/actions/CAction.php(76): index->run() 71 { 72 $method=new ReflectionMethod($this, 'run'); 73 if($method->getNumberOfParameters()>0) 74 return $this->runWithParamsInternal($this, $method, $params); 75 76 $this->run(); 77 return true; 78 } 79 80 /** 81 * Executes a method of an object with the supplied named parameters. |
| #5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(308): CAction->runWithParams(array("sid" => "649162")) 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; |
| #6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(286): CController->runAction(index) 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(); |
| #7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(265): CController->runActionWithFilters(index, 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); |
| #8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(282): CController->run("index") 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))); |
| #9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index/sid/649162") 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. |
| #10 |
+
–
/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 /** |
| #11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/index.php(211): CApplication->run() 206 die (sprintf('%s should be writable by the webserver (766 or 776).', $runtimePath)); 207 } 208 } 209 210 Yii::$enableIncludePath = false; 211 Yii::createApplication('LSYii_Application', $config)->run(); 212 213 /* End of file index.php */ 214 /* Location: ./index.php */ |