Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1503 Rev 1515
Line 55... Line 55...
55
		$donnees['liste_rouge'] = $this->getCategorieListeRouge();
55
		$donnees['liste_rouge'] = $this->getCategorieListeRouge();
56
		return $donnees;
56
		return $donnees;
57
	}
57
	}
Line 58... Line 58...
58
	
58
	
59
	private function getStatuts() {
59
	private function getStatuts() {
60
		$statuts = "";
60
		$statuts = array();
61
		$projet = Config::get($this->referentiel.'.baseStatuts');
61
		$projet = Config::get($this->referentiel.'.baseStatuts');
62
		if ($projet != "") {
62
		if ($projet != "") {
63
			$nnr = $this->nomCourant->getNnr();
63
			$nnr = $this->nomCourant->getNnr();
64
			$statuts = $this->statuts->getStatuts($projet, $nnr);
64
			$statuts = $this->statuts->getStatuts($projet, $nnr);
Line 69... Line 69...
69
		}
69
		}
70
		return $statuts;
70
		return $statuts;
71
	}
71
	}
Line 72... Line 72...
72
	
72
	
73
	private function getStatutsZoneGeo() {
73
	private function getStatutsZoneGeo() {
74
		$statuts = "";
74
		$statuts = array();
75
		$projet = Config::get($this->referentiel.'.baseStatuts');
75
		$projet = Config::get($this->referentiel.'.baseStatuts');
76
		if ($projet != "") {
76
		if ($projet != "") {
77
			$nnr = $this->nomCourant->getNnr();
77
			$nnr = $this->nomCourant->getNnr();
78
			$reponse = $this->statuts->getStatutsZoneGeo($projet, $nnr);
78
			$reponse = $this->statuts->getStatutsZoneGeo($projet, $nnr);
Line 86... Line 86...
86
		}
86
		}
87
		return $statuts;
87
		return $statuts;
88
	}
88
	}
Line 89... Line 89...
89
	
89
	
90
	private function getCategorieListeRouge() {
90
	private function getCategorieListeRouge() {
91
		$liste_rouge = "";
91
		$liste_rouge = array();
92
		$projet = Config::get($this->referentiel.'.baseListeRouge');
92
		$projet = Config::get($this->referentiel.'.baseListeRouge');
93
		if ($projet != "") {
93
		if ($projet != "") {
94
			$nnr = $this->nomCourant->getNnr();
94
			$nnr = $this->nomCourant->getNnr();
95
			$liste_rouge = $this->statuts->getCategorieListeRouge($projet, $nnr);
95
			$liste_rouge = $this->statuts->getCategorieListeRouge($projet, $nnr);