Subversion Repositories Applications.framework

Rev

Rev 389 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 389 Rev 391
Line 14... Line 14...
14
 * @package	Framework
14
 * @package	Framework
15
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
15
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
16
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
16
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
17
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
17
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
18
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
18
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
19
 * @version	$Id: Framework.php 389 2011-11-07 13:47:22Z jpm $
19
 * @version	$Id: Framework.php 391 2011-11-09 16:55:53Z jpm $
20
 * @since		0.3
20
 * @since		0.3
21
 * @link		/doc/framework/
21
 * @link		/doc/framework/
22
 */
22
 */
23
class Framework {
23
class Framework {
Line 59... Line 59...
59
 
59
 
60
	/**
60
	/**
61
	 * Redéfinit des constantes globales utiles pour le Framework et les applis.
61
	 * Redéfinit des constantes globales utiles pour le Framework et les applis.
62
	 */
62
	 */
63
	private static function definirConstantesGlobales() {
-
 
64
		/** Redéfinition de la constante DIRECTORY_SEPARATOR en version abrégée DS */
63
	private static function definirConstantesGlobales() {
-
 
64
		if (!defined('DS')) {
65
		if (!defined('DS')) {
65
			/** Redéfinition de la constante DIRECTORY_SEPARATOR en version abrégée DS */
66
			define('DS', DIRECTORY_SEPARATOR);
66
			define('DS', DIRECTORY_SEPARATOR);
67
		}
-
 
68
		/** Redéfinition de la constante PATH_SEPARATOR en version abrégée PS */
67
		}
-
 
68
		if (!defined('PS')) {
69
		if (!defined('PS')) {
69
			/** Redéfinition de la constante PATH_SEPARATOR en version abrégée PS */
70
			define('PS', PATH_SEPARATOR);
70
			define('PS', PATH_SEPARATOR);
71
		}
71
		}
Line 72... Line 72...
72
	}
72
	}