Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 107 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 107 Rev 122
Line 43... Line 43...
43
 
43
 
44
	//+------------------------------------------------------------------------------------------------------+
44
	//+------------------------------------------------------------------------------------------------------+
Line 45... Line 45...
45
	// Méthodes communes aux projets d'eFlore
45
	// Méthodes communes aux projets d'eFlore
46
 
-
 
47
	protected function chargerConfigDuProjet() {
-
 
48
		$fichierIniDefaut = $this->getScriptChemin().$this->getProjetNom().'.defaut.ini';
46
 
49
		if (file_exists($fichierIniDefaut)) {
47
	protected function chargerConfigDuProjet() {
50
			$fichierIni = $this->getScriptChemin().$this->getProjetNom().'.ini';
48
		$fichierIni = $this->getScriptChemin().$this->getProjetNom().'.ini';
51
			if (file_exists($fichierIni)) {
49
		if (file_exists($fichierIni)) {
52
				Config::charger($fichierIni);
50
			Config::charger($fichierIni);
53
			} else {
51
		} else {
54
				$m = "Veuillez configurer le projet en créant le fichier '{$this->projetNom}.ini' ".
52
			$m = "Veuillez configurer le projet en créant le fichier '{$this->projetNom}.ini' ".
55
					"dans le dossier du module de script du projet à partir du fichier '{$this->projetNom}.defaut.ini'.";
-
 
56
				throw new Exception($m);
53
				"dans le dossier du module de script du projet à partir du fichier '{$this->projetNom}.defaut.ini'.";
57
			}
54
			throw new Exception($m);
Line 58... Line 55...
58
		}
55
		}
59
	}
56
	}