Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 114 | Rev 169 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 114 Rev 160
Line 9... Line 9...
9
 * @category	PHP 5.2
9
 * @category	PHP 5.2
10
 * @package		Collection
10
 * @package		Collection
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @copyright	2010 Tela-Botanica
12
 * @copyright	2010 Tela-Botanica
13
 * @license		GPL-v3 et CECILL-v2
13
 * @license		GPL-v3 et CECILL-v2
14
 * @version		$Id: AppControleur.php 114 2010-06-28 09:49:51Z jpm $
14
 * @version		$Id: AppControleur.php 160 2010-09-13 13:10:41Z jpm $
15
 */
15
 */
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
class AppControleur extends Controleur {
17
class AppControleur extends Controleur {
Line 184... Line 184...
184
	
184
	
185
	/**
185
	/**
186
	 * Retourne les messages d'exceptions et d'erreurs. 
186
	 * Retourne les messages d'exceptions et d'erreurs. 
187
	 */
187
	 */
188
	public static function getExceptions() {
188
	public static function getExceptions() {
189
		$sortie = GestionnaireException::getExceptions();
189
		$sortie = (Config::get('fw_debogage')) ? GestionnaireException::getExceptions() : '';
190
		if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
190
		if (Config::get('sortie_encodage') != Config::get('appli_encodage')) {
191
			$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
191
			$sortie = mb_convert_encoding($sortie, Config::get('sortie_encodage'), Config::get('appli_encodage'));
192
		}
192
		}
193
		return $sortie;
193
		return $sortie;