Subversion Repositories Applications.referentiel

Rev

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

Rev Author Line No. Line
37 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Classe Controleur du module Accueil.
5
 * Affichage les infos sur l'ensemble des référentiels disponibles.
6
 *
7
 * @package		Referentiel
8
 * @category	Php5.2
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @copyright	2010 Tela-Botanica
11
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
 * @version		SVN: $Id$
14
 */
15
class Accueil extends AppliControleur {
16
 
17
	private $referentiel = null;
18
	private $referentielDao = null;
19
 
20
	public function __construct()  {
21
		parent::__construct();
22
 
23
		// Récupération de paramêtres
24
		if (isset($_GET['ref'])) { // code du projet courrant
25
			$this->referentiel = strtolower(strip_tags($_GET['ref']));
26
		}
27
 
28
		// Chargement des DAO nécessaires
29
		$this->referentielDao = new ReferentielDao();
30
	}
31
 
32
	//+----------------------------------------------------------------------------------------------------------------+
33
	// Méthodes
34
	/**
35
	 * Fonction d'affichage par défaut
36
	 */
37
	public function executerActionParDefaut() {
38
		return $this->afficherAccueil();
39
	}
40
 
41
	/**
42
	 * Affiche la liste des référentiels
43
	 */
44
	public function afficherAccueil() {
45
		$donnees = array();
45 jpm 46
		$this->initialiserModulePrincipal();
37 jpm 47
 
48
		$infos = $this->referentielDao->getReferentielsDispo();
49
		if ($infos != false) {
50
			$referentiel = array();
51
			foreach ($infos as $info) {
52
				$referentiel['nom'] = $info;
170 delphine 53
				$referentiel['titre'] = $this->referentielDao->getNom($info);
271 delphine 54
				$referentiel['url'] = $this->obtenirUrlMenuConsultation($info);
289 gduche 55
				$referentiel['date'] = $this->referentielDao->getDateMiseAJour($info);
288 gduche 56
 
40 jpm 57
				$donnees['referentiels'][] = $referentiel;
37 jpm 58
			}
59
		} else {
60
			$this->addMessage("Aucun référentiel n'est disponible.");
61
		}
62
 
63
		$donnees['messages'] = $this->getMessages();
64
		$this->traiterEsperluette($donnees);
65
		$this->setSortie(self::RENDU_CORPS, $this->getVue('accueil', $donnees), false);
66
		$this->construireFilAriane();
67
	}
288 gduche 68
 
289 gduche 69
 
37 jpm 70
}
71
?>