/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/SurveyRuntimeHelper.php(1683)
1671 1672 private function setGroup() 1673 { 1674 if (!$this->previewgrp && !$this->previewquestion) { 1675 if (($this->bShowEmptyGroup) || !isset($_SESSION[$this->LEMsessid]['grouplist'])) { 1676 $this->gid = -1; // Make sure the gid is unused. This will assure that the foreach (fieldarray as ia) has no effect. 1677 $this->groupname = gT("Submit your answers"); 1678 $this->groupdescription = gT("There are no more questions. Please press the <Submit> button to finish this survey."); 1679 } else if ($this->sSurveyMode != 'survey') { 1680 if ($this->sSurveyMode != 'group') { 1681 $this->aStepInfo = LimeExpressionManager::GetStepIndexInfo($this->aMoveResult['seq']); 1682 } 1683 $this->gid = $this->aStepInfo['gid']; 1684 $this->groupname = $this->aStepInfo['gname']; 1685 $this->groupdescription = $this->aStepInfo['gtext']; 1686 $this->groupname = LimeExpressionManager::ProcessString($this->groupname, null, null, 3, 1, false, true, false); 1687 $this->groupdescription = LimeExpressionManager::ProcessString($this->groupdescription, null, null, 3, 1, false, true, false); 1688 } 1689 } 1690 } 1691 1692 private function fixMaxStep() 1693 { 1694 // NOTE: must stay after setPreview because of ()$this->sSurveyMode == 'group' && $this->previewgrp) condition touching step 1695 if ($_SESSION[$this->LEMsessid]['step'] > $_SESSION[$this->LEMsessid]['maxstep']) {
#0 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/helpers/SurveyRuntimeHelper.php(116): SurveyRuntimeHelper->setGroup() 111 $this->setNotAnsweredAndNotValidated(); 112 } else { 113 $this->setPreview(); 114 } 115 $this->moveSubmitIfNeeded(); 116 $this->setGroup(); 117 $this->fixMaxStep(); 118 119 //****************************************************************************************************** 120 //PRESENT SURVEY 121 //****************************************************************************************************** |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/application/controllers/survey/index.php(595): SurveyRuntimeHelper->run("282267", array("surveyid" => "282267", "thissurvey" => array("htmlemail" => "Y", "format" => "G", "template" => "vanilla", "language" => "en", ...), "thisstep" => "1", "tokensexist" => 0, ...)) 590 unset($redata); 591 $redata = compact(array_keys(get_defined_vars())); 592 Yii::import('application.helpers.SurveyRuntimeHelper'); 593 $tmp = new SurveyRuntimeHelper(); 594 // try { 595 $tmp->run($surveyid, $redata); 596 // } catch (WrongTemplateVersionException $ex) { 597 // echo $ex->getMessage(); 598 // } 599 } 600 |
#2 |
+
–
/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; |
#3 |
+
–
/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. |
#4 |
+
–
/mnt/data/shnoulle/nginx/www/3LTS/framework/web/CController.php(308): CAction->runWithParams(array("r" => "survey/index", "sid" => "282267")) 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; |
#5 |
+
–
/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(); |
#6 |
+
–
/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); |
#7 |
+
–
/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))); |
#8 |
+
–
/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. |
#9 |
+
–
/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 /** |
#10 |
+
–
/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 */ |