Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 88 → Rev 89

/trunk/bibliotheque/dao/TaxonDao.php
50,6 → 50,13
return $donnees[0];
}
public function getHomonyme($ref, $nom) {
$url = $this->url_jrest.self::SERVICE."/Homonyme/$ref/$nom";
$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";