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;
|
|
|
53 |
$referentiel['url'] = $this->obtenirUrlDetailReferentiel($info);
|
40 |
jpm |
54 |
$donnees['referentiels'][] = $referentiel;
|
37 |
jpm |
55 |
}
|
|
|
56 |
} else {
|
|
|
57 |
$this->addMessage("Aucun référentiel n'est disponible.");
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
$donnees['messages'] = $this->getMessages();
|
|
|
61 |
$this->traiterEsperluette($donnees);
|
|
|
62 |
$this->setSortie(self::RENDU_CORPS, $this->getVue('accueil', $donnees), false);
|
|
|
63 |
$this->construireFilAriane();
|
|
|
64 |
}
|
|
|
65 |
|
|
|
66 |
/**
|
|
|
67 |
* Affiche le détail d'un référentiel et la liste des actions possibles
|
|
|
68 |
*/
|
|
|
69 |
public function afficherDetail() {
|
|
|
70 |
$donnees = array();
|
45 |
jpm |
71 |
$this->initialiserModulePrincipal();
|
37 |
jpm |
72 |
|
|
|
73 |
// Traitement de l'info sur le code du référentiel
|
|
|
74 |
if (isset($this->referentiel)) {
|
|
|
75 |
$this->construireMenu($this->referentiel);
|
|
|
76 |
$this->construireFilAriane($this->referentiel);
|
|
|
77 |
$donnees['referentiel'] = $this->referentiel;
|
|
|
78 |
$donnees['url_menu_test'] = $this->obtenirUrlMenuTest($this->referentiel);
|
|
|
79 |
$donnees['url_menu_versionnage'] = $this->obtenirUrlMenuVersionnage($this->referentiel);
|
|
|
80 |
$donnees['url_menu_consultation'] = $this->obtenirUrlMenuConsultation($this->referentiel);
|
|
|
81 |
|
|
|
82 |
} else {
|
|
|
83 |
$this->addMessage("Aucun code de projet de référentiel n'est indiqué (Ex. bdnff).");
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
$donnees['messages'] = $this->getMessages();
|
|
|
87 |
$this->traiterEsperluette($donnees);
|
|
|
88 |
$this->setSortie(self::RENDU_CORPS, $this->getVue('detail_referentiel', $donnees), false);
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
}
|
|
|
92 |
?>
|