Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 156 | 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
 * classe Controleur du module Syndication.
5
 *
6
 * @package		Collection
7
 * @category	Php5
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
 */
114 jpm 14
class Syndication extends aControleur {
34 jpm 15
 
16
	//+----------------------------------------------------------------------------------------------------------------+
17
	// Méthodes
18
	/**
19
	 * Fonction d'affichage par défaut
20
	 */
21
	public function executerActionParDefaut() {
22
		return $this->afficher();
23
	}
24
 
25
	/**
26
	 * Cartographier les collections.
27
	 * @return string la vue correspondante
28
	 */
29
	public function afficher() {
30
		// Initialisation de variable
31
		$donnees = array();
32
 
33
		// Récupération des infos sur les flux disponibles
156 jpm 34
		$syndicationDao = new SyndicationDao();
34 jpm 35
		$donnees['syndications'] = $syndicationDao->getListeDesFlux();
36
 
37
		// Limitation des entrées des flux
38
		$donnees['limite'] = Config::get('flux_limite');
39
 
40
		// Traitement du squelette et retour
41
		$resultat = $this->getVue('syndication', $donnees);
42
		$this->setSortie(self::RENDU_CORPS, $resultat);
85 jpm 43
		$this->chargerPiedDePage();
34 jpm 44
	}
45
}
46
?>