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 |
*/
|
|
|
14 |
class Syndication extends ColControleur {
|
|
|
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
|
|
|
34 |
$syndicationDao = $this->getModele('SyndicationDao');
|
|
|
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);
|
|
|
43 |
}
|
|
|
44 |
}
|
|
|
45 |
?>
|