7 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Collection est le controlleur principal de l'application.
|
|
|
5 |
* Elle repartie les demandes utilisateurs dans les différents modules, executent les actions et redistribue le code
|
|
|
6 |
* html dans les différentes fonctions d'affichage.
|
|
|
7 |
* C'est une Singleton.
|
|
|
8 |
*
|
114 |
jpm |
9 |
* @category PHP 5.2
|
7 |
jpm |
10 |
* @package Collection
|
|
|
11 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
12 |
* @copyright 2010 Tela-Botanica
|
|
|
13 |
* @license GPL-v3 et CECILL-v2
|
114 |
jpm |
14 |
* @version $Id: AppControleur.php 160 2010-09-13 13:10:41Z jpm $
|
7 |
jpm |
15 |
*/
|
|
|
16 |
|
114 |
jpm |
17 |
class AppControleur extends Controleur {
|
7 |
jpm |
18 |
|
|
|
19 |
/**
|
|
|
20 |
* Instance de la classe pointant sur elle même (pour le pattern singleton)
|
|
|
21 |
*/
|
|
|
22 |
private static $instance = null;
|
|
|
23 |
|
|
|
24 |
/**
|
|
|
25 |
* Paramètres pour les collections
|
|
|
26 |
*/
|
|
|
27 |
private static $parametres = array();
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* Constructeur vide
|
|
|
31 |
*/
|
8 |
jpm |
32 |
public function __construct() {
|
83 |
jpm |
33 |
$sortie = array('titre' => '', 'description' => '', 'tags' => '',
|
|
|
34 |
'corps' => '', 'tete' => '', 'pied' => '', 'navigation' => '');
|
112 |
jpm |
35 |
$url = new Url(Config::get('url_base_index'));
|
7 |
jpm |
36 |
self::$parametres = array( 'module' => 'Recherche',
|
|
|
37 |
'action' => 'executerActionParDefaut',
|
|
|
38 |
'sortie' => $sortie,
|
|
|
39 |
'url' => $url);
|
8 |
jpm |
40 |
parent::__construct();
|
7 |
jpm |
41 |
}
|
|
|
42 |
|
|
|
43 |
/**
|
|
|
44 |
* Initialisation du controleur principal en fonction des paramêtres de l'url.
|
|
|
45 |
*/
|
|
|
46 |
public static function initialiser() {
|
|
|
47 |
self::verifierCreationInstance();
|
15 |
jpm |
48 |
self::gererSession();
|
7 |
jpm |
49 |
|
|
|
50 |
if (isset($_GET['module'])) {
|
|
|
51 |
self::$parametres['module'] = $_GET['module'];
|
|
|
52 |
}
|
|
|
53 |
self::$parametres['url']->setVariableRequete('module', self::$parametres['module']);
|
|
|
54 |
if (isset($_GET['action'])) {
|
|
|
55 |
self::$parametres['action'] = $_GET['action'];
|
|
|
56 |
}
|
|
|
57 |
self::$parametres['url']->setVariableRequete('action', self::$parametres['action']);
|
|
|
58 |
|
|
|
59 |
$registre = Registre::getInstance();
|
|
|
60 |
$registre->set('parametres', &self::$parametres);
|
|
|
61 |
|
|
|
62 |
$ClasseModule = self::$parametres['module'];
|
|
|
63 |
$action = self::$parametres['action'];
|
|
|
64 |
$module = new $ClasseModule();
|
8 |
jpm |
65 |
$module->$action();
|
|
|
66 |
self::fusionnerSortie($module->getSortie());
|
7 |
jpm |
67 |
}
|
|
|
68 |
|
15 |
jpm |
69 |
private static function gererSession() {
|
|
|
70 |
if (Config::get('session_demarrage')) {
|
|
|
71 |
// Attribution d'un nom à la session
|
|
|
72 |
session_name(Config::get('session_nom'));
|
|
|
73 |
// Démarrage de la session
|
|
|
74 |
session_start();
|
|
|
75 |
}
|
|
|
76 |
}
|
|
|
77 |
|
7 |
jpm |
78 |
/**
|
|
|
79 |
* Fusionne un tableau de sortie par défaut avec le tableau renvoyé par l'action du module.
|
|
|
80 |
* @param array le tableau à fusionner
|
|
|
81 |
*/
|
|
|
82 |
private static function fusionnerSortie($sortie) {
|
|
|
83 |
self::$parametres['sortie'] = array_merge(self::$parametres['sortie'], $sortie);
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
/**
|
|
|
88 |
* Vérifie si l'instance de classe à été crée, si non la crée.
|
|
|
89 |
*/
|
|
|
90 |
private static function verifierCreationInstance() {
|
|
|
91 |
if (empty(self::$instance)) {
|
114 |
jpm |
92 |
self::$instance = new AppControleur();
|
7 |
jpm |
93 |
}
|
|
|
94 |
}
|
|
|
95 |
|
|
|
96 |
/**
|
|
|
97 |
* Retourne le titre du contenu de l'application.
|
|
|
98 |
*/
|
|
|
99 |
public static function getMetaTitre() {
|
88 |
jpm |
100 |
$sortie = self::$parametres['sortie']['titre'];
|
|
|
101 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
102 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
103 |
}
|
|
|
104 |
return $sortie;
|
7 |
jpm |
105 |
}
|
|
|
106 |
|
|
|
107 |
/**
|
|
|
108 |
* Retourne la description du contenu de l'application.
|
|
|
109 |
*/
|
|
|
110 |
public static function getMetaDescription() {
|
88 |
jpm |
111 |
$sortie = self::$parametres['sortie']['description'];
|
|
|
112 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
113 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
114 |
}
|
|
|
115 |
return $sortie;
|
7 |
jpm |
116 |
}
|
|
|
117 |
|
|
|
118 |
/**
|
|
|
119 |
* Retourne les mots-clés (tags) du contenu de l'application.
|
|
|
120 |
*/
|
|
|
121 |
public static function getMetaTags() {
|
88 |
jpm |
122 |
$sortie = self::$parametres['sortie']['tags'];
|
|
|
123 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
124 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
125 |
}
|
|
|
126 |
return $sortie;
|
7 |
jpm |
127 |
}
|
|
|
128 |
|
|
|
129 |
/**
|
|
|
130 |
* Retourne le contenu du corps de l'application.
|
|
|
131 |
*/
|
|
|
132 |
public static function getContenuCorps() {
|
39 |
jpm |
133 |
$sortie = self::$parametres['sortie']['corps'];
|
|
|
134 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
135 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
136 |
}
|
|
|
137 |
return $sortie;
|
7 |
jpm |
138 |
}
|
|
|
139 |
|
|
|
140 |
/**
|
|
|
141 |
* Retourne le contenu de la tête de l'application.
|
|
|
142 |
*/
|
|
|
143 |
public static function getContenuTete() {
|
39 |
jpm |
144 |
$sortie = self::$parametres['sortie']['tete'];
|
|
|
145 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
146 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
147 |
}
|
|
|
148 |
return $sortie;
|
7 |
jpm |
149 |
}
|
|
|
150 |
|
|
|
151 |
/**
|
|
|
152 |
* Retourne le contenu du pied de l'application.
|
|
|
153 |
*/
|
|
|
154 |
public static function getContenuPied() {
|
39 |
jpm |
155 |
$sortie = self::$parametres['sortie']['pied'];
|
|
|
156 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
157 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
158 |
}
|
|
|
159 |
return $sortie;
|
7 |
jpm |
160 |
}
|
|
|
161 |
|
|
|
162 |
/**
|
|
|
163 |
* Retourne les éléments de navigation de l'application.
|
|
|
164 |
*/
|
|
|
165 |
public static function getContenuNavigation() {
|
39 |
jpm |
166 |
$sortie = self::$parametres['sortie']['navigation'];
|
|
|
167 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
168 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
169 |
}
|
|
|
170 |
return $sortie;
|
7 |
jpm |
171 |
}
|
|
|
172 |
|
52 |
jpm |
173 |
/**
|
|
|
174 |
* Retourne les chronos pris dans l'appli
|
|
|
175 |
*/
|
|
|
176 |
public static function getChrono() {
|
|
|
177 |
$sortie = '';
|
|
|
178 |
if (Config::get('chronometrage')) {
|
|
|
179 |
$chrono = Chronometre::afficherChrono();
|
|
|
180 |
$sortie = mb_convert_encoding($chrono, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
181 |
}
|
|
|
182 |
return $sortie;
|
|
|
183 |
}
|
|
|
184 |
|
54 |
jpm |
185 |
/**
|
|
|
186 |
* Retourne les messages d'exceptions et d'erreurs.
|
|
|
187 |
*/
|
|
|
188 |
public static function getExceptions() {
|
160 |
jpm |
189 |
$sortie = (Config::get('fw_debogage')) ? GestionnaireException::getExceptions() : '';
|
54 |
jpm |
190 |
if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
|
|
|
191 |
$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
|
|
|
192 |
}
|
|
|
193 |
return $sortie;
|
|
|
194 |
}
|
7 |
jpm |
195 |
}
|