/mnt/data/shnoulle/nginx/www/master/application/helpers/qanda_helper.php(3084)
3072 'suffix' => $suffix, 3073 'inputsize' => $inputsize, 3074 'withColumn' => $withColumn 3075 ), true); 3076 } elseif ((int) ($aQuestionAttributes['location_mapservice']) == 1) { 3077 $coreClass = "ls-answers map-item geoloc-item"; 3078 $currentLocation = $_SESSION['survey_'.Yii::app()->getConfig('surveyID')][$ia[1]]; 3079 $currentLatLong = null; 3080 3081 // Get the latitude/longtitude for the point that needs to be displayed by default 3082 if (strlen($currentLocation) > 2) { 3083 $currentLatLong = explode(';', $currentLocation); 3084 $currentLatLong = array($currentLatLong[0], $currentLatLong[1]); 3085 } else { 3086 if ((int) ($aQuestionAttributes['location_nodefaultfromip']) == 0) { 3087 $currentLatLong = getLatLongFromIp(getIPAddress()); 3088 } 3089 3090 if (!isset($currentLatLong) || $currentLatLong == false) { 3091 $floatLat = 0; 3092 $floatLng = 0; 3093 $sDefaultcoordinates=trim(LimeExpressionManager::ProcessString($aQuestionAttributes['location_defaultcoordinates'], $ia[0], array(), 3, 1, false, false, true));/* static var is the last one */ 3094 $LatLong = explode(" ", $sDefaultcoordinates); 3095 if (isset($LatLong[0]) && isset($LatLong[1])) { 3096 $floatLat = $LatLong[0];
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/helpers/qanda_helper.php(203): do_shortfreetext(array("3226", "182855X234X3226", "GmapdefaultB", "GMAP default answer 48.8579684 2.2952776", ...)) 198 case 'N': //NUMERICAL QUESTION TYPE 199 $values = do_numerical($ia); 200 break; 201 202 case 'S': //SHORT FREE TEXT 203 $values = do_shortfreetext($ia); 204 break; 205 206 case 'T': //LONG FREE TEXT 207 $values = do_longfreetext($ia); 208 break; |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/helpers/SurveyRuntimeHelper.php(181): retrieveAnswers(array("3226", "182855X234X3226", "GmapdefaultB", "GMAP default answer 48.8579684 2.2952776", ...)) 176 } 177 178 //Get the answers/inputnames 179 // TMSW - can content of retrieveAnswers() be provided by LEM? Review scope of what it provides. 180 // TODO - retrieveAnswers is slow - queries database separately for each question. May be fixed in _CI or _YII ports, so ignore for now 181 list($plus_qanda, $plus_inputnames) = retrieveAnswers($ia); 182 183 if ($plus_qanda) { 184 $plus_qanda[] = $ia[4]; 185 $plus_qanda[] = $ia[6]; // adds madatory identifyer for adding mandatory class to question wrapping div 186 |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/survey/index.php(591): SurveyRuntimeHelper->run("182855",
array("surveyid" => "182855", "thissurvey" => array("htmlemail"
=> "Y", "format" => "G", "template" => "skelvanilla",
"language" => "en", ...), "thisstep" => null, "tokensexist" =>
0, ...)) 586 unset($redata); 587 $redata = compact(array_keys(get_defined_vars())); 588 Yii::import('application.helpers.SurveyRuntimeHelper'); 589 $tmp = new SurveyRuntimeHelper(); 590 // try { 591 $tmp->run($surveyid, $redata); 592 // } catch (WrongTemplateVersionException $ex) { 593 // echo $ex->getMessage(); 594 // } 595 } 596 |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/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/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. |
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): CAction->runWithParams(array("r"
=>
"survey/index/action/previewquestion/sid/182855/gid/234/qid/3226",
"action" => "previewquestion", "sid" => "182855", "gid" =>
"234", ...)) 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/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(); |
#7 |
+
–
/mnt/data/shnoulle/nginx/www/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); |
#8 |
+
–
/mnt/data/shnoulle/nginx/www/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))); |
#9 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("survey/index/action/previewquestion/sid/182855/gid/234/qid/3226") 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/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 /** |
#11 |
+
–
/mnt/data/shnoulle/nginx/www/master/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 */ |