Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 478 Rev 521
Line 19... Line 19...
19
 
19
 
20
	public function initialiserProjet($projetNom) {
20
	public function initialiserProjet($projetNom) {
21
		$this->projetNom = $projetNom;
21
		$this->projetNom = $projetNom;
22
		$this->chargerConfigDuProjet();
22
		$this->chargerConfigDuProjet();
-
 
23
	}
23
	}
24
	
24
 
25
	
25
	//+------------------------------------------------------------------------------------------------------+
26
	//+------------------------------------------------------------------------------------------------------+
Line 26... Line 27...
26
	// Méthodes communes aux projets d'eFlore
27
	// Méthodes communes aux projets d'eFlore
27
 
28
 
Line 37... Line 38...
37
		}
38
		}
38
	}
39
	}
Line 39... Line 40...
39
 
40
 
40
	//changée
41
	//changée
-
 
42
	public function chargerStructureSql() {
-
 
43
		$this->chargerFichierSql('chemins.structureSql');
-
 
44
	}
-
 
45
	
-
 
46
	
41
	public function chargerStructureSql() {
47
	public function chargerFichierSql($param_chemin) {
42
		$fichierStructureSql = $this->Conteneur->getParametre('chemins.structureSql');
48
		$fichierStructureSql = $this->Conteneur->getParametre($param_chemin);
43
		$contenuSql = $this->recupererContenu($fichierStructureSql);
49
		$contenuSql = $this->recupererContenu($fichierStructureSql);
44
		$this->executerScripSql($contenuSql);
50
		$this->executerScripSql($contenuSql);
-
 
51
	}
-
 
52
	
Line 45... Line 53...
45
	}
53
	
46
 
54
 
47
	public function executerScripSql($sql) {
55
	public function executerScripSql($sql) {
48
		$requetes = Outils::extraireRequetes($sql);
56
		$requetes = Outils::extraireRequetes($sql);