* @author Jean-Pascal MILCENT * @author Aurelien PERONNET * @license GPL v3 * @license CECILL v2 * @copyright 1999-2014 Tela Botanica */ class Name extends Cel { public function getElement($uid){ $retour = array('null'); if (isset($uid[0])) { $chercheurInfoTaxon = new RechercheInfosTaxonBeta($this->config); $retour = $chercheurInfoTaxon->effectuerRequeteInfosComplementairesEtFormaterNom($uid[0]); } $this->envoyerJson($retour); return true; } public function getRessource(){ print '["null"]'; return; } }