/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/surveytranslator_helper.php(798)
786 { 787 $aDateFormatDetails = array(); 788 $aDateFormatDetails['dateformat'] = trim($aQidAttributes['date_format']); 789 $aDateFormatDetails['phpdate'] = getPHPDateFromDateFormat($aDateFormatDetails['dateformat']); 790 $aDateFormatDetails['jsdate'] = getJSDateFromDateFormat($aDateFormatDetails['dateformat']); 791 } 792 else 793 { 794 if(!is_array($mThisSurvey)) 795 { 796 $mThisSurvey = array('surveyls_dateformat' => getDateFormatForSID($mThisSurvey)); 797 } 798 $aDateFormatDetails = getDateFormatData($mThisSurvey['surveyls_dateformat']); 799 } 800 return $aDateFormatDetails; 801 } 802 803 804 /** 805 * Get the date format for a specified survey 806 * 807 * @param $surveyid integer Survey id 808 * @param $languagecode string Survey language code (optional) 809 * @returns integer 810 *
#0 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/expressions/em_manager_helper.php(3164): getDateFormatDataForQID(array("dropdown_dates" => 0, "date_min" => "1900-01-01", "date_max" => "2000-12-12", "em_validation_q" => "", ...), array("hyperlinkSyntaxHighlighting" => true)) 3159 if ($date_min!='' || $date_max!='') 3160 { 3161 //Get date format of current question and convert date in help text accordingly 3162 $LEM =& LimeExpressionManager::singleton(); 3163 $aAttributes=$LEM->getQuestionAttributesForEM($LEM->sid, $questionNum,$_SESSION['LEMlang']); 3164 $aDateFormatData=getDateFormatDataForQID($aAttributes[$questionNum],$LEM->surveyOptions); 3165 $_minV = (($date_min == '') ? "''" : "if((strtotime(".$date_min.")), date('".$aDateFormatData['phpdate']."', strtotime(".$date_min.")),'')"); 3166 $_maxV = (($date_max == '') ? "''" : "if((strtotime(".$date_max.")), date('".$aDateFormatData['phpdate']."', strtotime(".$date_max.")),'')"); 3167 $qtips['value_range']= 3168 "{if(!is_empty($_minV) && is_empty($_maxV), sprintf('".$this->gT("Answer must be greater or equal to %s")."',$_minV), '')}" . 3169 "{if(is_empty($_minV) && !is_empty($_maxV), sprintf('".$this->gT("Answer must be less or equal to %s")."',$_maxV), '')}" . |
#1 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/helpers/expressions/em_manager_helper.php(6740): LimeExpressionManager->_CreateSubQLevelRelevanceAndValidationEqns() 6735 $LEM->maxGroupSeq = $gseq; 6736 } 6737 6738 if (!$LEM->allOnOnePage || ($LEM->allOnOnePage && !$LEM->processedRelevance)) { 6739 $LEM->ProcessAllNeededRelevance(); // TODO - what if this is called using Survey or Data Entry format? 6740 $LEM->_CreateSubQLevelRelevanceAndValidationEqns(); 6741 $LEM->processedRelevance=true; 6742 } 6743 } 6744 } 6745 } |
#2 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/admin/surveyadmin.php(993): LimeExpressionManager::StartProcessingGroup("1955", false, 897638) 988 $aGrouplist = QuestionGroup::model()->getGroups($iSurveyID); 989 $initializedReplacementFields = false; 990 991 foreach ($aGrouplist as $iGID => $aGroup) 992 { 993 LimeExpressionManager::StartProcessingGroup($aGroup['gid'], false, $iSurveyID); 994 if (!$initializedReplacementFields) { 995 templatereplace("{SITENAME}"); // Hack to ensure the EM sets values of LimeReplacementFields 996 $initializedReplacementFields = true; 997 } 998 |
#3 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/admin/surveyadmin.php(977): SurveyAdmin->_showReorderForm(897638) 972 { 973 $this->_reorderGroup($iSurveyID); 974 } 975 else 976 { 977 $this->_showReorderForm($iSurveyID); 978 } 979 } 980 981 private function _showReorderForm($iSurveyID) 982 { |
#4 |
unknown(0): SurveyAdmin->organize("897638")
|
#5 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(SurveyAdmin, array("897638")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#6 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/core/Survey_Common_Action.php(99): CAction->runWithParamsInternal(SurveyAdmin, ReflectionMethod, array("surveyid" => "897638", "sa" => "organize", "iSurveyId" => "897638", "iSurveyID" => "897638")) 094 $oMethod = new ReflectionMethod($this, $sDefault); 095 } 096 097 // We're all good to go, let's execute it 098 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 099 return parent::runWithParamsInternal($this, $oMethod, $params); 100 } 101 102 /** 103 * Some functions have different parameters, which are just an alias of the 104 * usual parameters we're getting in the url. This function just populates |
#7 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("surveyid" => "897638", "sa" => "organize")) 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; |
#8 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(286): CController->runAction(SurveyAdmin) 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(); |
#9 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CController.php(265): CController->runActionWithFilters(SurveyAdmin, 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); |
#10 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/application/controllers/AdminController.php(169): CController->run("survey") 164 $this->redirect(array('/admin/authentication/sa/login')); 165 } 166 167 } 168 169 return parent::run($action); 170 } 171 172 /** 173 * Routes all the actions to their respective places 174 * |
#11 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(282): AdminController->run("survey") 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))); |
#12 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/survey/sa/organize") 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. |
#13 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/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 /** |
#14 |
+
–
/home/sondages.pro/htdocs/limesurvey_GIT/LimeSurvey/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 */ |