Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 245 Rev 274
Line 120... Line 120...
120
	private function chargerClasseProjet($classe) {
120
	private function chargerClasseProjet($classe) {
121
		if (class_exists($classe)) {
121
		if (class_exists($classe)) {
122
			return null;
122
			return null;
123
		}
123
		}
Line -... Line 124...
-
 
124
 
124
 
125
		$cheminBiblio = Config::get('chemin_bibliotheque');
125
		$chemins = array();
126
		$chemins = array();
126
		$chemins[] = $this->cheminCourrant.$this->projetNom.DS;
127
		$chemins[] = $this->cheminCourrant.$this->projetNom.DS;
-
 
128
		$chemins[] = $this->cheminCourrant.'commun'.DS;
127
		$chemins[] = $this->cheminCourrant.'commun'.DS;
129
		$chemins[] = $cheminBiblio;
Line 128... Line 130...
128
		$chemins[] = Config::get('chemin_bibliotheque');
130
		$chemins[] = $cheminBiblio.'robots'.DS;
129
 
131
 
130
		foreach ($chemins as $chemin) {
132
		foreach ($chemins as $chemin) {
131
			$chemin = $chemin.$classe.'.php';
133
			$chemin = $chemin.$classe.'.php';