Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev Author Line No. Line
34 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Modèle d'accès à la base de données des Collections pour les flux de Syndication.
5
 *
6
 * @package		Collection
7
 * @category	php 5.2
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id$
13
 *
14
 */
15
class SyndicationDao extends ColModele {
16
	const SERVICE = 'CoelSyndication';
17
 
18
	/**
19
	 * Retourne l'ensemble des information sur les flux de syndication disponibles.
20
	 *
21
	 * @return array un tableau contenant les informations.
22
	 */
23
	public function getListeDesFlux() {
24
		$url = $this->url_jrest.self::SERVICE.'/liste_des_flux';
25
		$json = file_get_contents($url);
26
		$donnees = json_decode($json, true);
27
		return $donnees;
28
	}
29
}
30
?>