Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 103 → Rev 104

/trunk/bibliotheque/dao/TaxonDao.php
57,6 → 57,13
return $donnees;
}
public function getNomsBasionymeCommun($ref, $basionyme) {
$url = $this->url_jrest.self::SERVICE."/Basionyme/$ref/$basionyme";
$json = $this->envoyerRequeteConsultation($url);
$donnees = json_decode($json, true);
return $donnees;
}
//Classification
public function getClassification($type, $ref, $id) {
$url = $this->url_jrest.self::SERVICE."/Taxon$type/$ref/$id";