/data/webdev/master/application/core/QuestionTypes/ArrayMultiscale/RenderArrayMultiscale.php(138)
126 $numColExtraAnswer++; 127 } elseif ($shownoanswer) { 128 $columnswidth -= 4; 129 $rightwidth = 4; 130 } 131 if ($centerexists) { 132 $numColExtraAnswer++; 133 } else { 134 $columnswidth -= 4; 135 } 136 if ($numColExtraAnswer > 0) { 137 $extraanswerwidth = $this->answerwidth / $numColExtraAnswer; /* If there are 2 separator : set to 1/2 else to same */ 138 if ($defaultWidth) { 139 $columnswidth -= $this->answerwidth; 140 } else { 141 $this->answerwidth = $this->answerwidth / 2; 142 } 143 } else { 144 $extraanswerwidth = $separatorwidth; 145 } 146 $cellwidth = $columnswidth / ($this->numrows ? $this->numrows : 1); 147 148 // Header row and colgroups 149 $aData['answerwidth'] = $this->answerwidth; 150 $aData['cellwidth'] = $cellwidth;
#0 |
+
–
/data/webdev/master/application/core/QuestionTypes/ArrayMultiscale/RenderArrayMultiscale.php(403): RenderArrayMultiscale->getPositioningAndSizing(array("coreClass"
=> "ls-answers subquestion-list questions-list", "basename" =>
"91424X16X285", "answertypeclass" => " radio", "labelans0" =>
array("Option 1", "Option 2", "Option 3", "Option 4"), ...)) 398 399 $this->setAnsweroptions(); 400 $this->setSubquestions(); 401 402 $this->parseLabelsToArray($aData); 403 $this->getPositioningAndSizing($aData); 404 $this->parseSubquestionsNoDropdown($aData); 405 406 $answer = Yii::app()->twigRenderer->renderQuestion( 407 $this->getMainView() . '/answer', 408 $aData, |
#1 |
+
–
/data/webdev/master/application/core/QuestionTypes/ArrayMultiscale/RenderArrayMultiscale.php(425): RenderArrayMultiscale->renderNoDropdown() 420 $this->aMandatoryViolationSubQ = ($aLastMoveResult['mandViolation'] && ($this->oQuestion->mandatory == 'Y' || $this->oQuestion->mandatory == 'S')) 421 ? explode("|", $aLastMoveResult['unansweredSQs']) 422 : []; 423 424 if ($this->useDropdownLayout === false) { 425 $answer = $this->renderNoDropdown(); 426 } else { 427 $answer = $this->renderDropdown(); 428 } 429 430 $this->registerAssets(); |
#2 |
+
–
/data/webdev/master/application/helpers/qanda_helper.php(154): RenderArrayMultiscale->render() 149 150 $oQuestion = Question::model()->findByPk($ia[0]); 151 $oQuestionTemplate = QuestionTemplate::getNewInstance($oQuestion); 152 $oQuestionTemplate->registerAssets(); // Register the custom assets of the question template, if needed 153 $oRenderer = $oQuestion->getRenderererObject($ia); 154 $values = $oRenderer->render(); 155 156 157 if (isset($values)) { 158 //Break apart $values array returned from switch 159 //$answer is the html code to be printed |
#3 |
+
–
/data/webdev/master/application/helpers/SurveyRuntimeHelper.php(279): retrieveAnswers(array("285", "91424X16X285", "1", "Tableau double échelle", ...)) 274 } 275 276 //Get the answers/inputnames 277 // TMSW - can content of retrieveAnswers() be provided by LEM? Review scope of what it provides. 278 // TODO - retrieveAnswers is slow - queries database separately for each question. May be fixed in _CI or _YII ports, so ignore for now 279 list($plus_qanda, $plus_inputnames) = retrieveAnswers($ia); 280 281 if ($plus_qanda) { 282 $plus_qanda[] = $ia[4]; 283 $plus_qanda[] = $ia[6]; // adds madatory identifyer for adding mandatory class to question wrapping div 284 |
#4 |
+
–
/data/webdev/master/application/controllers/survey/index.php(604): SurveyRuntimeHelper->run("91424",
array("surveyid" => "91424", "thissurvey" => array("htmlemail"
=> "Y", "format" => "A", "tokenencryptionoptions" => "",
"template" => "fruity", ...), "thisstep" => null, "tokensexist"
=> 0, ...)) 599 unset($redata); 600 $redata = compact(array_keys(get_defined_vars())); 601 Yii::import('application.helpers.SurveyRuntimeHelper'); 602 $tmp = new SurveyRuntimeHelper(); 603 // try { 604 $tmp->run($surveyid, $redata); 605 // } catch (WrongTemplateVersionException $ex) { 606 // echo $ex->getMessage(); 607 // } 608 } 609 |
#5 |
+
–
/data/webdev/master/application/controllers/survey/index.php(26): index->action() 21 public $oTemplate; 22 23 public function run() 24 { 25 useFirebug(); 26 $this->action(); 27 } 28 29 public function action() 30 { 31 global $surveyid; |
#6 |
+
–
/data/webdev/master/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. |
#7 |
+
–
/data/webdev/master/framework/web/CController.php(308): CAction->runWithParams(array("r"
=> "survey/index/action/previewgroup/sid/91424/gid/16", "action"
=> "previewgroup", "sid" => "91424", "gid" => "16")) 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; |
#8 |
+
–
/data/webdev/master/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(); |
#9 |
+
–
/data/webdev/master/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); |
#10 |
+
–
/data/webdev/master/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))); |
#11 |
+
–
/data/webdev/master/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index/action/previewgroup/sid/91424/gid/16") 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. |
#12 |
+
–
/data/webdev/master/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 /** |
#13 |
+
–
/data/webdev/master/index.php(192): CApplication->run() 187 require_once APPPATH . 'core/LSYii_Application' . EXT; 188 189 $config = require_once(APPPATH . 'config/internal' . EXT); 190 191 Yii::$enableIncludePath = false; 192 Yii::createApplication('LSYii_Application', $config)->run(); 193 194 /* End of file index.php */ 195 /* Location: ./index.php */ |