| 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 getVersionVerificateur() {
|
| - |
|
71 |
if (!isset($this->partages['VersionVerificateur'])){
|
| - |
|
72 |
$ressources = $this->getRessourcesUrl();
|
| - |
|
73 |
$parametres = $this->getParametresUrl();
|
| - |
|
74 |
$versions = $this->getVersions();
|
| - |
|
75 |
$this->partages['VersionVerificateur'] = new VersionVerificateur($ressources, $parametres, $versions);
|
| - |
|
76 |
}
|
| - |
|
77 |
return $this->partages['VersionVerificateur'];
|
| - |
|
78 |
}
|
| 69 |
|
79 |
|
| 70 |
public function getBdd() {
|
80 |
public function getBdd() {
|
| 71 |
if (!isset($this->partages['Bdd'])){
|
81 |
if (!isset($this->partages['Bdd'])){
|
| 72 |
$this->partages['Bdd'] = new Bdd();
|
82 |
$this->partages['Bdd'] = new Bdd();
|
| 73 |
}
|
83 |
}
|
| Line 93... |
Line 103... |
| 93 |
$projet->setCheminConfig($this->getParametre('chemin_configurations'));
|
103 |
$projet->setCheminConfig($this->getParametre('chemin_configurations'));
|
| 94 |
$projet->setCheminBiblio($this->getParametre('chemin_bibliotheque'));
|
104 |
$projet->setCheminBiblio($this->getParametre('chemin_bibliotheque'));
|
| 95 |
$projet->initialiser();
|
105 |
$projet->initialiser();
|
| 96 |
$projet->setParamsVerif($this->getParametresUrlVerificateur());
|
106 |
$projet->setParamsVerif($this->getParametresUrlVerificateur());
|
| 97 |
$projet->setRessourcesVerif($this->getRessourcesUrlVerificateur());
|
107 |
$projet->setRessourcesVerif($this->getRessourcesUrlVerificateur());
|
| - |
|
108 |
$projet->setVersionVerif($this->getVersionVerificateur());
|
| 98 |
$projet->setServiceGenerique($this->getServiceGenerique());
|
109 |
$projet->setServiceGenerique($this->getServiceGenerique());
|
| 99 |
$this->partages['Projet'] = $projet;
|
110 |
$this->partages['Projet'] = $projet;
|
| 100 |
}
|
111 |
}
|
| 101 |
return $this->partages['Projet'];
|
112 |
return $this->partages['Projet'];
|
| 102 |
}
|
113 |
}
|