10 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe abstraite dont chaque controleur de l'application doit hériter.
|
|
|
5 |
*
|
|
|
6 |
* @category PHP 5.2
|
|
|
7 |
* @package eflore-consultation
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
|
|
10 |
* @copyright 2011 Tela-Botanica
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
|
|
|
12 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
|
|
|
13 |
* @version $Id$
|
|
|
14 |
*/
|
|
|
15 |
abstract class aControleur extends Controleur {
|
11 |
jpm |
16 |
|
|
|
17 |
const META_TITRE = 'titre';
|
|
|
18 |
const META_DESCRIPTION = 'description';
|
|
|
19 |
const META_TAGS = 'tags';
|
|
|
20 |
const RENDU_TETE = 'tete';
|
|
|
21 |
const RENDU_CORPS = 'corps';
|
|
|
22 |
const RENDU_PIED = 'pied';
|
14 |
jpm |
23 |
const RENDU_NAVIGATION = 'navigation';
|
|
|
24 |
const RENDU_MENU = 'menu';
|
11 |
jpm |
25 |
|
|
|
26 |
private $sortie = array();
|
|
|
27 |
private $parametres = array();
|
|
|
28 |
protected $url = null;
|
|
|
29 |
|
34 |
jpm |
30 |
public function __construct($classeFille) {
|
|
|
31 |
$chemin = Config::get('chemin_modules').
|
|
|
32 |
AppControleur::getNomDossierDepuisClasse(get_class($classeFille)).DS.
|
|
|
33 |
Config::get('dossier_squelettes').DS;
|
|
|
34 |
Registre::set('tbf.chemin_squelettes', $chemin);
|
18 |
jpm |
35 |
$this->parametres = Registre::get('parametres');
|
11 |
jpm |
36 |
$this->url = $this->parametres['url'];
|
|
|
37 |
parent::__construct();
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
/**
|
|
|
41 |
* Attribue une position de sortie à un contenu.
|
|
|
42 |
*/
|
|
|
43 |
protected function setSortie($position, $contenu, $fusionner = false) {
|
|
|
44 |
if ($this->verifierExistenceTypeSortie($position)) {
|
|
|
45 |
if ($fusionner) {
|
|
|
46 |
$this->sortie[$position] .= $contenu;
|
|
|
47 |
} else {
|
|
|
48 |
$this->sortie[$position] = $contenu;
|
|
|
49 |
}
|
|
|
50 |
}
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
/**
|
|
|
54 |
* Vérifie l'existence du type de sortie indiqué pour son utilisation dans le tableau de sortie.
|
|
|
55 |
* @param string le type de sortie à tester.
|
|
|
56 |
* @return bool true si le type de sortie est valide, sinon false.
|
|
|
57 |
*/
|
|
|
58 |
private function verifierExistenceTypeSortie($type) {
|
|
|
59 |
$existe = true;
|
|
|
60 |
if ($type != self::RENDU_TETE &&
|
|
|
61 |
$type != self::RENDU_CORPS &&
|
|
|
62 |
$type != self::RENDU_PIED &&
|
14 |
jpm |
63 |
$type != self::RENDU_NAVIGATION &&
|
|
|
64 |
$type != self::RENDU_MENU &&
|
11 |
jpm |
65 |
$type != self::META_TITRE &&
|
|
|
66 |
$type != self::META_DESCRIPTION &&
|
|
|
67 |
$type != self::META_TAGS) {
|
|
|
68 |
trigger_error("Le type de sortie '$type' n'est pas une valeur prédéfinie.", E_USER_WARNING);
|
|
|
69 |
$existe = false;
|
|
|
70 |
}
|
|
|
71 |
return $existe;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
/**
|
|
|
75 |
* Retourne le tableau de sortie à utiliser dans le controleur principal de l'application.
|
|
|
76 |
*/
|
|
|
77 |
public function getSortie() {
|
|
|
78 |
return $this->sortie;
|
|
|
79 |
}
|
10 |
jpm |
80 |
|
11 |
jpm |
81 |
/**
|
|
|
82 |
* Execute l'action d'un module donnée et fusionne le résultat avec le tableau de sortie.
|
|
|
83 |
*/
|
|
|
84 |
protected function executerAction($ClasseModule, $action) {
|
|
|
85 |
$module = new $ClasseModule();
|
|
|
86 |
$module->$action();
|
|
|
87 |
$this->fusionnerSortie($module->getSortie());
|
|
|
88 |
|
|
|
89 |
}
|
|
|
90 |
|
|
|
91 |
/**
|
|
|
92 |
* Fusionne un tableau de sortie par défaut avec le tableau passé en paramêtre.
|
|
|
93 |
* @param array le tableau à fusionner
|
|
|
94 |
*/
|
|
|
95 |
private function fusionnerSortie($sortie) {
|
|
|
96 |
$this->sortie = array_merge($this->sortie, $sortie);
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
/**
|
|
|
100 |
* Pour mutualiser la création du pied de page de l'application, sa gestion est gérée dans cette classe.
|
|
|
101 |
*/
|
|
|
102 |
protected function chargerPiedDePage() {
|
|
|
103 |
$donnees['appli'] = Framework::getInfoAppli();
|
27 |
jpm |
104 |
$donnees['i18n'] = array_merge(I18n::get('Pied'), I18n::get('General'));
|
|
|
105 |
|
|
|
106 |
$this->setSortie(self::RENDU_PIED, $this->getVue('pied_page', $donnees));
|
11 |
jpm |
107 |
}
|
27 |
jpm |
108 |
|
|
|
109 |
protected function obtenirUrlRecherche($txt = null) {
|
|
|
110 |
$this->url->setRequete(false);
|
|
|
111 |
$this->url->setVariableRequete('module', 'Recherche');
|
|
|
112 |
$this->url->setVariableRequete('action', 'rechercher');
|
|
|
113 |
if (!is_null($txt)) {
|
|
|
114 |
$this->url->setVariableRequete('recherche', $txt);
|
|
|
115 |
}
|
|
|
116 |
$url = $this->url->getURL();
|
|
|
117 |
$this->url->unsetVariablesRequete(array('module', 'action', 'recherche'));
|
|
|
118 |
return $url;
|
|
|
119 |
}
|
10 |
jpm |
120 |
}
|
|
|
121 |
?>
|