/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/qanda_helper.php(4074)
4062 $labelcode[] = $lrow->code; 4063 } 4064 4065 // No-dropdown layout 4066 if ($useDropdownLayout === false && count($lresult) > 0) { 4067 if (trim($aQuestionAttributes['answer_width']) != '') { 4068 $answerwidth = trim($aQuestionAttributes['answer_width']); 4069 $defaultWidth = false; 4070 } else { 4071 $answerwidth = 33; 4072 $defaultWidth = true; 4073 } 4074 $columnswidth = 100 - $answerwidth; 4075 $iCount = intval(Question::model()->count("parent_qid=:qid and question like :separator", array(':qid'=>$ia[0], ":separator"=>'%|%'))); 4076 if ($iCount > 0) { 4077 $right_exists = true; 4078 /* put the right answer to same width : take place in answer width only if it's not default */ 4079 if ($defaultWidth) { 4080 $columnswidth -= $answerwidth; 4081 } else { 4082 $answerwidth = $answerwidth / 2; 4083 } 4084 } else { 4085 $right_exists = false; 4086 }
#0 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/qanda_helper.php(239): do_array(array("32089", "275575X2081X32089", "Q00", "A first example question. Please answer this question:", ...)) 234 case 'E': //ARRAY (Increase/Same/Decrease) radio-buttons 235 $values = do_array_increasesamedecrease($ia); 236 break; 237 238 case 'F': //ARRAY (Flexible) - Row Format 239 $values = do_array($ia); 240 break; 241 242 case 'H': //ARRAY (Flexible) - Column Format 243 $values = do_arraycolumns($ia); 244 break; |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/SurveyRuntimeHelper.php(177): retrieveAnswers(array("32089", "275575X2081X32089", "Q00", "A first example question. Please answer this question:", ...)) 172 } 173 174 //Get the answers/inputnames 175 // TMSW - can content of retrieveAnswers() be provided by LEM? Review scope of what it provides. 176 // TODO - retrieveAnswers is slow - queries database separately for each question. May be fixed in _CI or _YII ports, so ignore for now 177 list($plus_qanda, $plus_inputnames) = retrieveAnswers($ia); 178 179 if ($plus_qanda) { 180 $plus_qanda[] = $ia[4]; 181 $plus_qanda[] = $ia[6]; // adds madatory identifyer for adding mandatory class to question wrapping div 182 |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/controllers/survey/index.php(590): SurveyRuntimeHelper->run("275575",
array("surveyid" => "275575", "thissurvey" => array("htmlemail"
=> "Y", "format" => "G", "template" => "skelvanilla",
"language" => "en", ...), "thisstep" => "0", "tokensexist" =>
0, ...)) 585 unset($redata); 586 $redata = compact(array_keys(get_defined_vars())); 587 Yii::import('application.helpers.SurveyRuntimeHelper'); 588 $tmp = new SurveyRuntimeHelper(); 589 // try { 590 $tmp->run($surveyid, $redata); 591 // } catch (WrongTemplateVersionException $ex) { 592 // echo $ex->getMessage(); 593 // } 594 } 595 |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/controllers/survey/index.php(24): index->action() 19 public $oTemplate; 20 21 public function run() 22 { 23 useFirebug(); 24 $this->action(); 25 } 26 27 public function action() 28 { 29 global $surveyid; |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/framework/web/CController.php(308): CAction->runWithParams(array("r" => "survey/index", "sid" => "275575")) 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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index") 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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/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 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/index.php(194): CApplication->run() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ |