Subversion Repositories Applications.referentiel

Rev

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

Rev 344 Rev 356
Line 30... Line 30...
30
	
30
	
31
	/**
31
	/**
32
	 * Recherche un référentiel en fonction de paramètres
32
	 * Recherche un référentiel en fonction de paramètres
33
	 * @return array un tableau contenant des objets d'informations sur les taxons
33
	 * @return array un tableau contenant des objets d'informations sur les taxons
34
	 */
34
	 */
35
	public function chercher($type, $parametres) {
35
	public function chercher($type, $parametres, $limit = '150') {
-
 
36
		$this->ordre['nom_sci'] = 'ASC';
-
 
37
		$this->limite_nbre = $limit;
36
		$this->ordre['nom_sci'] = 'ASC';
38
		
37
		$url = $this->construireUrlRecherche($type, $parametres);
39
		$url = $this->construireUrlRecherche($type, $parametres);
38
		$json = $this->envoyerRequeteConsultation($url);
40
		$json = $this->envoyerRequeteConsultation($url);
39
		$donnees = json_decode($json, true);
41
		$donnees = json_decode($json, true);
40
		return $donnees;
42
		return $donnees;