D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\TemplateConfiguration.php(113)
101 else 102 { 103 $this->path = Yii::app()->getConfig("standardtemplaterootdir").DIRECTORY_SEPARATOR.$this->sTemplateName; 104 $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml'; 105 } 106 107 } 108 else 109 { 110 $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml'; 111 } 112 //var_dump(realpath ($this->xmlFile)); die(); 113 $this->config = simplexml_load_file(realpath ($this->xmlFile)); 114 115 // The template configuration. 116 $this->viewPath = $this->path.DIRECTORY_SEPARATOR.$this->config->engine->pstpldirectory.DIRECTORY_SEPARATOR; 117 $this->siteLogo = (isset($this->config->files->logo))?$this->config->files->logo->filename:''; 118 119 // condition for user's template prior to 160219 120 $this->filesPath = (isset($this->config->engine->filesdirectory))? $this->path.DIRECTORY_SEPARATOR.$this->config->engine->filesdirectory.DIRECTORY_SEPARATOR : $this->path . '/files/'; 121 // condition for user's template prior to 160504 122 $this->overwrite_question_views = (isset($this->config->engine->overwrite_question_views))? $this->config->engine->overwrite_question_views=='true' : false; 123 124 $this->cssFramework = $this->config->engine->cssframework; 125 $this->packages = (array) $this->config->engine->packages->package;
#0 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\TemplateConfiguration.php(113): simplexml_load_file("") 108 else 109 { 110 $this->xmlFile = $this->path.DIRECTORY_SEPARATOR.'config.xml'; 111 } 112 //var_dump(realpath ($this->xmlFile)); die(); 113 $this->config = simplexml_load_file(realpath ($this->xmlFile)); 114 115 // The template configuration. 116 $this->viewPath = $this->path.DIRECTORY_SEPARATOR.$this->config->engine->pstpldirectory.DIRECTORY_SEPARATOR; 117 $this->siteLogo = (isset($this->config->files->logo))?$this->config->files->logo->filename:''; 118 |
#1 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\Template.php(140): TemplateConfiguration->setTemplateConfiguration("_clicadom", "") 135 * @return StdClass 136 */ 137 public static function getTemplateConfiguration($sTemplateName='', $iSurveyId='') 138 { 139 $oTemplate = new TemplateConfiguration; 140 $oTemplate->setTemplateConfiguration($sTemplateName, $iSurveyId); 141 return $oTemplate; 142 } 143 144 /** 145 * Return the list of ALL files present in the file directory |
#2 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\models\Template.php(295): Template::getTemplateConfiguration("_clicadom", "") 290 */ 291 public static function getInstance($sTemplateName='', $iSurveyId='') 292 { 293 if (empty(self::$instance)) 294 { 295 self::$instance = self::getTemplateConfiguration($sTemplateName, $iSurveyId); 296 } 297 return self::$instance; 298 } 299 300 /** |
#3 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\controllers\AdminController.php(55): Template::getInstance("_clicadom") 50 if (!Yii::app()->getConfig("action")) {Yii::app()->setConfig("action", returnGlobal('action'));} //Desired action 51 if (!Yii::app()->getConfig("subaction")) {Yii::app()->setConfig("subaction", returnGlobal('subaction'));} //Desired subaction 52 if (!Yii::app()->getConfig("editedaction")) {Yii::app()->setConfig("editedaction", returnGlobal('editedaction'));} // for html editor integration 53 54 // Variable not used, but keep it here so the object is initialized at the right place. 55 $oTemplate = Template::model()->getInstance(Yii::app()->getConfig("defaulttemplate")); 56 $oAdmintheme = new AdminTheme; 57 $oAdmintheme->setAdminTheme(); 58 } 59 60 /** |
#4 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\application\core\LSYii_Controller.php(42): AdminController->_init() 37 // This will setConfig from database 38 $this->loadHelper('globalsettings'); 39 $this->loadHelper('common'); 40 $this->loadHelper('expressions.em_manager'); 41 $this->loadHelper('replacements'); 42 $this->_init(); 43 } 44 45 /** 46 * Check that installation was already done by looking for config.php 47 * Will redirect to the installer script if not exists. |
#5 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\framework\web\CWebApplication.php(359): LSYii_Controller->__construct("admin", null) 354 require($classFile); 355 if(class_exists($className,false) && is_subclass_of($className,'CController')) 356 { 357 $id[0]=strtolower($id[0]); 358 return array( 359 new $className($controllerID.$id,$owner===$this?null:$owner), 360 $this->parseActionParams($route), 361 ); 362 } 363 return null; 364 } |
#6 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\framework\web\CWebApplication.php(276): CWebApplication->createController("emailtemplates/sa/index/") 271 * @param string $route the route of the current request. See {@link createController} for more details. 272 * @throws CHttpException if the controller could not be created. 273 */ 274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); |
#7 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\framework\web\CWebApplication.php(141): CWebApplication->runController("admin/emailtemplates/sa/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. |
#8 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\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 /** |
#9 |
+
–
D:\CloudStation\Pluto\Dossier Utilisateurs\Ju\Mes programmes\Wamp64\www\Temp\limesurvey250plus-build160506\limesurvey\index.php(212): CApplication->run() 207 die (sprintf('%s should be writable by the webserver (766 or 776).', $runtimePath)); 208 } 209 } 210 211 Yii::$enableIncludePath = false; 212 Yii::createApplication('LSYii_Application', $config)->run(); 213 214 /* End of file index.php */ 215 /* Location: ./index.php */ |