Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 84 → Rev 85

/trunk/bibliotheque/dao/TaxonDao.php
49,6 → 49,14
$donnees = json_decode($json, true);
return $donnees[0];
}
//Classification
public function getClassification($type, $ref, $id) {
$url = $this->url_jrest.self::SERVICE."/Taxon$type/$ref/$id";
$json = $this->envoyerRequeteConsultation($url);
$donnees = json_decode($json, true);
return $donnees;
}
 
}
?>