Subversion Repositories eFlore/Applications.cel

Rev

Rev 1152 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
/**
* PHP Version 5
*
* @category  PHP
* @package   jrest
* @author    David Delon <david.delon@clapas.net>
* @copyright 2010 Tela-Botanica
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
* @version   SVN: <svn_id>
* @link      /doc/jrest/
*/
 
/**
* Name.php  
* 
* in : utf8
* out : utf8
* 
* Cas d'utilisation :
* Service recherche nom retenu depuis un numero nomenclatural pour la BDNFF
* 
* 1 : L'application recoit un numero nomenclatural
* 2 : L'application retourne le nom retenu associƩ
*/
class Name extends Cel {

        function getElement($uid){
                
                $retour = array("null"); 
        
                if (isset($uid[0])) {                   
                        $chercheur_info_taxon = new RechercheInfosTaxonBeta($this->config);
                        $retour = $chercheur_info_taxon->effectuerRequeteInfosComplementairesEtFormaterNom($uid[0]);                                            
                }
                
                $this->envoyerJson($retour);                    
                return true;    
        }
        
        function getRessource(){
                        print "[\"null\"]"; 
            return;
        }
}
/* +--Fin du code ---------------------------------------------------------------------------------------+
* $Log$
* Revision 1.3  2008-01-30 08:57:28  ddelon
* fin mise en place mygwt
*
* Revision 1.2  2007-05-21 18:13:30  ddelon
* Refactoring et documentation
* 
*/
?>