Subversion Repositories eFlore/Applications.cel

Rev

Rev 859 | Rev 1297 | 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>
* @author    Aurélien Peronnet <aurelien@tela-botanica.org>
* @copyright 2010 Tela-Botanica
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
* @version   SVN: <svn_id>
* @link      /doc/jrest/
*/


/**
* InventoryObservationCount.php
*
* in : utf8
* out : utf8
*
* Cas d'utilisation :
* Service recherche du nombre a partir de divers critères
*
* 2: Le service recherche le nombre d'images correspondant au critères demandé
* 3: Le service renvoie le nombre calcule
*/
class InventoryObservationCount extends Cel {

        /**
         *  renvoie le nombre d' observations  correspondant aux criteres
         *      uid[0] : utilisateur obligatoire
         *      uid[1] : criteres de filtrage de la forme critere1=valeur1&critere2=valeur2
         *  
        */
        function getElement($uid)
        {
                // Controle detournement utilisateur
                $this->controleUtilisateur($uid[0]);

                $chercheur_observations = new RechercheObservation($this->config);

                $criteres = array();

                if(isset($uid[1]))
                {
                        $criteres = $chercheur_observations->parserRequeteCriteres($uid[1]) ;
                }

                $retour = $chercheur_observations->compterObservations($uid[0], $criteres);

                $retour_encode = json_encode($retour) ;
                header("content-type: application/json") ;
                print $retour_encode ;
                exit() ;
        }
}
?>