Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 34 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
// declare(encoding='UTF-8');
/**
 * Modèle d'accès à la base de données des Collections pour les flux de Syndication.
 *
 * @package             Collection
 * @category    php 5.2
 * @author              Jean-Pascal MILCENT <jpm@tela-botanica.org>
 * @copyright   2010 Tela-Botanica
 * @license             http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
 * @license             http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
 * @version             SVN: $Id$
 *
 */
class SyndicationDao extends ColModele {
        const SERVICE = 'CoelSyndication';
        
        /**
         * Retourne l'ensemble des information sur les flux de syndication disponibles.
         * 
         * @return array un tableau contenant les informations.
         */
        public function getListeDesFlux() {
                $url = $this->url_jrest.self::SERVICE.'/liste_des_flux';
                $json = file_get_contents($url);
                $donnees = json_decode($json, true);
                return $donnees;
        }
}
?>