* @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; } } ?>