Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 76 Rev 84
Line 12... Line 12...
12
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
12
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
13
 * @version		$Id$
13
 * @version		$Id$
14
 */
14
 */
15
class Resultat extends aControleur {
15
class Resultat extends aControleur {
Line -... Line 16...
-
 
16
	
-
 
17
	private $resultatType = 'classique';
-
 
18
	
-
 
19
	public function initialiser() {
-
 
20
		$this->capturerParametres();
-
 
21
	}
-
 
22
	
-
 
23
	private function capturerParametres() {
-
 
24
		Debug::printr($_GET);
-
 
25
		if (isset($_GET['resultat'])) {
-
 
26
			$this->resultatType = $_GET['resultat'];
-
 
27
		}
-
 
28
	}
16
	
29
	
17
	public function executerActionParDefaut() {
30
	public function executerActionParDefaut() {
18
		$this->executerResultat();
31
		$this->executerResultat();
Line 19... Line 32...
19
	}
32
	}
20
	
-
 
21
	public function executerResultat() {
33
	
-
 
34
	public function executerResultat() {
-
 
35
		$resultats = Registre::get('resultats');
-
 
36
		
-
 
37
		$donnees = array();	
-
 
38
		$donnees['typeResultat'] = $this->resultatType;
22
		$donnees = array();
39
		$donnees['urlResClassique'] = $this->obtenirUrlResultatClassique();
23
		$resultats = Registre::get('resultats');
40
		$donnees['urlResRetenu'] = $this->obtenirUrlResultatRetenu();
-
 
41
		$donnees['nbreTaxons'] = $resultats['entete']['total'];
24
		$donnees['nbreTaxons'] = $resultats['entete']['total'];
42
		$donnees['nomsHtml'] = $this->getNoms($resultats['resultat']);
25
		$donnees['taxons'] = $resultats['resultat'];
-
 
26
		$this->setSortie(self::RENDU_CORPS, $this->getVue('resultat', $donnees));
43
		
-
 
44
		$this->setSortie(self::RENDU_CORPS, $this->getVue('resultat', $donnees));
-
 
45
	}
-
 
46
	
-
 
47
	private function getNoms($resultats) {
-
 
48
		$noms = null;
-
 
49
		$methode = 'genererListe'.ucwords($this->resultatType);
-
 
50
		Debug::printr($methode);
-
 
51
		$noms = $this->$methode($resultats);
-
 
52
		return $noms;
-
 
53
	}
-
 
54
	
-
 
55
	private function genererListeClassique($resultats) {
-
 
56
		$donnees = array();
-
 
57
		$donnees['noms'] = $this->trierParNoms($resultats);
-
 
58
		return $this->getVue('resultat_liste_noms', $donnees);
-
 
59
	}
-
 
60
	
-
 
61
	private function trierParNoms($noms) {
-
 
62
		$noms = Tableau::trierTableauMd($noms, array('nom_sci' => SORT_ASC));
-
 
63
		return $noms;
-
 
64
	}
-
 
65
	
-
 
66
	private function genererListeRetenu($resultats) {
-
 
67
		$donnees = array();
-
 
68
		$donnees['noms'] = $this->trierParNomsRetenus($resultats);
-
 
69
		return $this->getVue('resultat_liste_noms', $donnees);
-
 
70
	}
-
 
71
	
-
 
72
	private function trierParNomsRetenus($noms) {
-
 
73
		$nomsRetenus = array();
-
 
74
		$nomsSynonymes = array();
-
 
75
		foreach ($noms as $id => $nom) {
-
 
76
			if ($nom['retenu'] == 'true') {
-
 
77
				$nomsRetenus[$id] = $nom;
-
 
78
			} else {
-
 
79
				$nomsSynonymes[$id] = $nom;
-
 
80
			}
-
 
81
		}
-
 
82
		$nomsRetenus = Tableau::trierTableauMd($nomsRetenus, array('nom_sci' => SORT_ASC));
-
 
83
		$nomsSynonymes = Tableau::trierTableauMd($nomsSynonymes, array('nom_sci' => SORT_ASC));
-
 
84
		$noms = array_merge($nomsRetenus, $nomsSynonymes);
-
 
85
		return $noms;
-
 
86
	}
-
 
87
 
27
		//print_r(Registre::get('resultats'));
88
	
28
	}
89
	
29
}
90
}