C:\xampp\htdocs\limesurvey\application\helpers\common_helper.php(1401)
1389 * @return array Returns array with survey info or false, if survey does not exist 1390 */ 1391 function getSurveyInfo($surveyid, $languagecode='') 1392 { 1393 global $siteadminname, $siteadminemail, $languagechanger; 1394 $surveyid=sanitize_int($surveyid); 1395 $languagecode=sanitize_languagecode($languagecode); 1396 $thissurvey=false; 1397 1398 // if no language code is set then get the base language one 1399 if (!isset($languagecode) || $languagecode=='') 1400 { 1401 $languagecode=Survey::model()->findByPk($surveyid)->language;; 1402 } 1403 1404 //$query="SELECT * FROM ".db_table_name('surveys').",".db_table_name('surveys_languagesettings')." WHERE sid=$surveyid and surveyls_survey_id=$surveyid and surveyls_language='$languagecode'"; 1405 1406 $result = Surveys_languagesettings::model()->with('survey')->findAllByAttributes(array('surveyls_survey_id' => $surveyid, 'surveyls_language' => $languagecode)); 1407 foreach ($result as $row) 1408 { 1409 $thissurvey=array(); 1410 foreach ($row as $k => $v) 1411 $thissurvey[$k] = $v; 1412 foreach ($row->survey as $k => $v) 1413 $thissurvey[$k] = $v;
#0 |
+
–
C:\xampp\htdocs\limesurvey\application\helpers\expressions\em_manager_helper.php(3913): getSurveyInfo("978173") 3908 $LEM->allOnOnePage=$allOnOnePage; 3909 $LEM->processedRelevance=false; 3910 $LEM->surveyOptions['hyperlinkSyntaxHighlighting']=true; // this will be temporary - should be reset in running survey 3911 $LEM->qid2exclusiveAuto=array(); 3912 3913 $surveyinfo = (isset($LEM->sid) ? getSurveyInfo($LEM->sid) : null); 3914 if (isset($surveyinfo['assessments']) && $surveyinfo['assessments']=='Y') 3915 { 3916 $LEM->surveyOptions['assessments']=true; 3917 } 3918 // $LEM->runtimeTimings[] = array(__METHOD__,(microtime(true) - $now)); |
#1 |
+
–
C:\xampp\htdocs\limesurvey\application\core\Survey_Common_Action.php(217): LimeExpressionManager::StartProcessingPage(false, "/limesurvey", true) 212 Yii::app()->getController()->_showadminmenu(!empty($aData['surveyid']) ? $aData['surveyid'] : null); 213 214 if (!empty($aData['surveyid'])) 215 { 216 217 LimeExpressionManager::StartProcessingPage(false, Yii::app()->baseUrl,true); // so can click on syntax highlighting to edit questions 218 219 $this->_surveybar($aData['surveyid'], !empty($aData['gid']) ? $aData['gid'] : null); 220 221 if (isset($aData['display']['menu_bars']['surveysummary'])) 222 { |
#2 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\admin\surveyadmin.php(1625): Survey_Common_Action->_renderWrappedTemplate("survey", array(), array("surveyid" => "954223", "gid" => null, "qid" => null, "display" => array("menu_bars" => array("surveysummary" => true)))) 1620 * @param array $aData Data to be passed on. Optional. 1621 */ 1622 protected function _renderWrappedTemplate($sAction = 'survey', $aViewUrls = array(), $aData = array()) 1623 { 1624 $this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css"); 1625 parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData); 1626 } 1627 1628 } |
#3 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\admin\surveyadmin.php(280): SurveyAdmin->_renderWrappedTemplate("survey", array(), array("surveyid" => "954223", "gid" => null, "qid" => null, "display" => array("menu_bars" => array("surveysummary" => true)))) 275 $aData['surveyid'] = $iSurveyID; 276 $aData['gid'] = $gid; 277 $aData['qid'] = $qid; 278 $aData['display']['menu_bars']['surveysummary'] = true; 279 280 $this->_renderWrappedTemplate('survey', array(), $aData); 281 } 282 283 /** 284 * Function responsible to deactivate a survey. 285 * |
#4 |
unknown(0): SurveyAdmin->view("954223", null, null)
|
#5 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(SurveyAdmin, array("954223", null, null)) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } |
#6 |
+
–
C:\xampp\htdocs\limesurvey\application\core\Survey_Common_Action.php(82): CAction->runWithParamsInternal(SurveyAdmin, ReflectionMethod, array("surveyid" => "954223", "sa" => "view", "iSurveyId" => "954223", "iSurveyID" => "954223")) 77 $oMethod = new ReflectionMethod($this, $sDefault); 78 } 79 80 // We're all good to go, let's execute it 81 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 82 return parent::runWithParamsInternal($this, $oMethod, $params); 83 } 84 85 /** 86 * Some functions have different parameters, which are just an alias of the 87 * usual parameters we're getting in the url. This function just populates |
#7 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(309): Survey_Common_Action->runWithParams(array("surveyid" => "954223", "sa" => "view")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#8 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(287): CController->runAction(SurveyAdmin) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#9 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CController.php(266): CController->runActionWithFilters(SurveyAdmin, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#10 |
+
–
C:\xampp\htdocs\limesurvey\application\controllers\AdminController.php(158): CController->run("survey") 153 Yii::app()->session['redirectopage'] = Yii::app()->request->requestUri; 154 155 $this->redirect($this->createUrl('/admin/authentication/login')); 156 } 157 158 return parent::run($action); 159 } 160 161 /** 162 * Routes all the actions to their respective places 163 * |
#11 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(276): AdminController->run("survey") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 |
+
–
C:\xampp\htdocs\limesurvey\framework\web\CWebApplication.php(135): CWebApplication->runController("admin/survey/sa/view") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#13 |
+
–
C:\xampp\htdocs\limesurvey\framework\base\CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#14 |
+
–
C:\xampp\htdocs\limesurvey\index.php(178): CApplication->run() 173 * 174 */ 175 require_once BASEPATH . 'yii' . EXT; 176 require_once APPPATH . 'core/LSYii_Application' . EXT; 177 178 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run(); 179 180 /* End of file index.php */ 181 /* Location: ./index.php */ |