/usr/share/nginx/html/lsurveymaster/application/helpers/frontend_helper.php(624)
612 613 $homeurl=Yii::app()->createAbsoluteUrl('/admin'); 614 $clang = Yii::app()->lang; 615 $sitename = Yii::app()->getConfig("sitename"); 616 617 $debug=Yii::app()->getConfig('debug'); 618 $bIsHTML = ($thissurvey['htmlemail'] == 'Y'); 619 620 $aReplacementVars=array(); 621 622 if ($thissurvey['allowsave'] == "Y" && isset($_SESSION['survey_'.$surveyid]['scid'])) 623 { 624 $aReplacementVars['RELOADURL']="".Yii::app()->getController()->createUrl("/survey/index/sid/{$surveyid}/loadall/reload/scid/".$_SESSION['survey_'.$surveyid]['scid']."/loadname/".urlencode($_SESSION['survey_'.$surveyid]['holdname'])."/loadpass/".urlencode($_SESSION['survey_'.$surveyid]['holdpass'])."/lang/".urlencode($clang->langcode)); 625 if ($bIsHTML) 626 { 627 $aReplacementVars['RELOADURL']="<a href='{$aReplacementVars['RELOADURL']}'>{$aReplacementVars['RELOADURL']}</a>"; 628 } 629 } 630 else 631 { 632 $aReplacementVars['RELOADURL']=''; 633 } 634 635 if (!isset($_SESSION['survey_'.$surveyid]['srid'])) 636 $srid = null;
#0 |
+
–
/usr/share/nginx/html/lsurveymaster/application/helpers/SurveyRuntimeHelper.php(598): sendSubmitNotifications("369689") 593 submittokens(); 594 } 595 596 //Send notifications 597 598 sendSubmitNotifications($surveyid); 599 600 601 $content = ''; 602 603 $content .= templatereplace(file_get_contents($sTemplatePath."startpage.pstpl"), array(), $redata, 'SubmitStartpage', false, NULL, array(), true ); |
#1 |
+
–
/usr/share/nginx/html/lsurveymaster/application/controllers/survey/index.php(579): SurveyRuntimeHelper->run("369689",
array("surveyid" => "369689", "thissurvey" => array("sid" =>
369689, "owner_id" => 1, "admin" => "Administrator", "active"
=> "Y", ...), "thisstep" => "3", "tokensexist" => 0, ...)) 574 //Send local variables to the appropriate survey type 575 unset($redata); 576 $redata = compact(array_keys(get_defined_vars())); 577 Yii::import('application.helpers.SurveyRuntimeHelper'); 578 $tmp = new SurveyRuntimeHelper(); 579 $tmp->run($surveyid,$redata); 580 581 if (isset($_POST['saveall']) || isset($flashmessage)) 582 { 583 echo "<script type='text/javascript'> $(document).ready( function() { alert('".$clang->gT("Your responses were successfully saved.","js")."');}) </script>"; 584 } |
#2 |
+
–
/usr/share/nginx/html/lsurveymaster/application/controllers/survey/index.php(46): index->action() 41 App()->getClientScript()->render($buffer); 42 App()->getClientScript()->reset(); 43 return $buffer; 44 }); 45 ob_implicit_flush(false); 46 $this->action(); 47 ob_flush(); 48 } 49 50 function action() 51 { |
#3 |
+
–
/usr/share/nginx/html/lsurveymaster/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 else 76 return $this->run(); 77 } 78 79 /** 80 * Executes a method of an object with the supplied named parameters. 81 * This method is internally used. |
#4 |
+
–
/usr/share/nginx/html/lsurveymaster/framework/web/CController.php(308): CAction->runWithParams(array("q" => "/lsurveymaster/index.php/survey/index")) 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 |
+
–
/usr/share/nginx/html/lsurveymaster/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 |
+
–
/usr/share/nginx/html/lsurveymaster/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 |
+
–
/usr/share/nginx/html/lsurveymaster/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 |
+
–
/usr/share/nginx/html/lsurveymaster/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 |
+
–
/usr/share/nginx/html/lsurveymaster/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
#10 |
+
–
/usr/share/nginx/html/lsurveymaster/index.php(200): CApplication->run() 195 die (sprintf('%s should be writable by the webserver (755 or 775).', $runtimePath)); 196 } 197 } 198 199 200 Yii::createApplication('LSYii_Application', $config)->run(); 201 202 /* End of file index.php */ 203 /* Location: ./index.php */ |