Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 178 Rev 185
Line 7... Line 7...
7
	public function afficherMoteurNiveau() {
7
	public function afficherMoteurNiveau() {
8
		$this->setSortie(self::RENDU_CORPS, $this->afficherNiveau());
8
		$this->setSortie(self::RENDU_CORPS, $this->afficherNiveau());
9
	}
9
	}
Line 10... Line 10...
10
	
10
	
-
 
11
	public function afficherNiveau() {
11
	public function afficherNiveau() {
12
		$donnees['parametres'] = $this->capturerParametres();
12
		$donnees['url_form'] = $this->urls->obtenirUrlBase();
13
		$donnees['url_form'] = $this->urls->obtenirUrlBase();
13
		$donnees['i18n'] = I18n::get('Niveau');
14
		$donnees['i18n'] = I18n::get('Niveau');
14
		$donnees['niveau'] = Registre::get('parametres.niveau');
15
		$donnees['niveau'] = Registre::get('parametres.niveau');
15
		return $this->getVue('niveau', $donnees);
16
		return $this->getVue('niveau', $donnees);
Line 16... Line 17...
16
	}
17
	}
17
	
18
	
-
 
19
	private function capturerParametres() {
-
 
20
		$parametre['referentiel'] = (isset($_GET['referentiel'])) ? $_GET['referentiel'] : Config::get('referentiel_defaut');
-
 
21
		$parametre['module'] = (isset($_GET['module'])) ? $_GET['module'] : Config::get('module_defaut');
-
 
22
		$parametre['action'] = (isset($_GET['action'])) ? $_GET['action'] : Config::get('action_defaut');
18
	private function capturerParametres() {
23
		if (isset($_GET['type_nom'])) {
-
 
24
			$parametre['type_nom'] = $_GET['type_nom'];
-
 
25
		}
19
		//referentiel=bdtfx&module=recherche&action=rechercheSimple&submit=Rechercher&type_nom=nom_scientifique&nom=Triraphis&resultat=decompo
26
		if (isset($_GET['nom'])) {
-
 
27
			$parametre['nom'] = $_GET['nom'];
-
 
28
		}
-
 
29
		if (isset($_GET['resultat'])) {
20
 
30
			$parametre['resultat'] = $_GET['resultat'];
21
		
31
		}
22
		if (isset($_GET['niveau'])) {
32
		if (isset($_GET['niveau'])) {
-
 
33
			Registre::set('parametres.niveau', $_GET['niveau']);
23
			Registre::set('parametres.niveau', $_GET['niveau']);
34
		}
24
		}
35
		return $parametre;
25
	}
36
	}
26
}
37
}