Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 69 Rev 76
Line 207... Line 207...
207
	}
207
	}
Line 208... Line 208...
208
	
208
	
209
	private function getParametresUrlRecherche() {
209
	private function getParametresUrlRecherche() {
210
		$parametres = array(
210
		$parametres = array(
211
			'referentiel' => Registre::get('parametres.referentiel'),
211
			'referentiel' => Registre::get('parametres.referentiel'),
212
			'module' => 'recherche-simple',
212
			'module' => 'recherche',
213
			'action' => 'rechercheNom',
213
			'action' => 'rechercheSimple',
214
			'submit' => 'Rechercher'
214
			'submit' => 'Rechercher'
215
		);
215
		);
216
		return $parametres;
216
		return $parametres;
Line 217... Line 217...
217
	}
217
	}
218
	
218
	
219
	protected function obtenirUrlRechercheSimple($nom = null, $type = 'nom_scientifique') {
-
 
220
		$parametres = $this->getParametresUrlRecherche();
219
	protected function obtenirUrlRechercheSimple($nom = null, $type = 'nom_scientifique') {
221
		$parametres['module'] = 'recherche-simple';
220
		$parametres = $this->getParametresUrlRecherche();
222
		$parametres['type_nom'] = $type;
221
		$parametres['type_nom'] = $type;
223
		$parametres['nom'] = $nom;
222
		$parametres['nom'] = $nom;
224
		$this->urlBase->setRequete($parametres);
223
		$this->urlBase->setRequete($parametres);