Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 524 Rev 559
Line 65... Line 65...
65
			$this->partages['RessourcesVerificateur'] = new RessourcesVerificateur($ressources, $projetsDispo, $servicesDispo);
65
			$this->partages['RessourcesVerificateur'] = new RessourcesVerificateur($ressources, $projetsDispo, $servicesDispo);
66
		}
66
		}
67
		return $this->partages['RessourcesVerificateur'];
67
		return $this->partages['RessourcesVerificateur'];
68
	}
68
	}
Line -... Line 69...
-
 
69
	
-
 
70
	public function getUrlFormatage() {
-
 
71
		if (!isset($this->partages['UrlFormatage'])){
-
 
72
			$Bdd = $this->getBdd();
-
 
73
			$this->partages['UrlFormatage'] = new UrlFormatage($Bdd);
-
 
74
		}
-
 
75
		return $this->partages['UrlFormatage'];
-
 
76
	}
69
	
77
	
70
	public function getRequetesAssemblage() {
78
	public function getRequetesAssemblage() {
71
		if (!isset($this->partages['RequetesAssemblage'])){
79
		if (!isset($this->partages['RequetesAssemblage'])){
72
			$this->partages['RequetesAssemblage'] =  new RequetesAssemblage($this->getBdd());
80
			$this->partages['RequetesAssemblage'] =  new RequetesAssemblage($this->getBdd());
73
		}
81
		}
Line 100... Line 108...
100
	public function getVersions() {
108
	public function getVersions() {
101
		if (!isset($this->partages['Versions'])){
109
		if (!isset($this->partages['Versions'])){
102
			$parametres = $this->getParametresUrl();
110
			$parametres = $this->getParametresUrl();
103
			$ressources = $this->getRessourcesUrl();
111
			$ressources = $this->getRessourcesUrl();
104
			$bdd = $this->getBdd();
112
			$bdd = $this->getBdd();
105
			$versions = new Versions($parametres, $ressources, $bdd);
113
			$versions = new Versions($parametres,  $bdd);
106
			$this->partages['Versions'] = $versions;
114
			$this->partages['Versions'] = $versions;
107
		}
115
		}
108
		return $this->partages['Versions'];
116
		return $this->partages['Versions'];
109
	}
117
	}