Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 605 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 605 Rev 919
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
	}
-
 
24
	
23
	}
25
	
24
 
26
	//+------------------------------------------------------------------------------------------------------+
25
	//+------------------------------------------------------------------------------------------------------+
Line 27... Line 26...
27
	// Méthodes communes aux projets d'eFlore
26
	// Méthodes communes aux projets d'eFlore
28
 
27
 
Line 40... Line 39...
40
 
39
 
41
	//changée
40
	//changée
42
	public function chargerStructureSql() {
41
	public function chargerStructureSql() {
43
		$this->chargerFichierSql('chemins.structureSql');
42
		$this->chargerFichierSql('chemins.structureSql');
44
	}
-
 
45
	
43
	}
46
	
44
 
47
	public function chargerFichierSql($param_chemin) {
45
	public function chargerFichierSql($param_chemin) {
48
		$fichierStructureSql = $this->Conteneur->getParametre($param_chemin);
46
		$fichierStructureSql = $this->Conteneur->getParametre($param_chemin);
49
		$contenuSql = $this->recupererContenu($fichierStructureSql);
47
		$contenuSql = $this->recupererContenu($fichierStructureSql);
50
		$this->executerScriptSql($contenuSql);
48
		$this->executerScriptSql($contenuSql);
51
	}
-
 
52
	
-
 
Line 53... Line 49...
53
	
49
	}
54
 
50
 
55
	public function executerScriptSql($sql) {
51
	public function executerScriptSql($sql) {
56
		$requetes = Outils::extraireRequetes($sql);
52
		$requetes = Outils::extraireRequetes($sql);