Subversion Repositories eFlore/Applications.cel

Rev

Rev 2415 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1500 delphine 1
<?php
2
// Encodage : UTF-8
3
// +-------------------------------------------------------------------------------------------------------------------+
4
/**
5
* Initialise le chargement et l'exécution des scripts
6
*
7
* Lancer ce fichier en ligne de commande avec :
8
* <code>/opt/lampp/bin/php cli.php mon_script -a test</code>
9
*
2415 jpm 10
 * @category   CEL
11
 * @package    Scripts
12
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
13
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
14
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
15
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
16
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
17
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
18
 */
1500 delphine 19
 
20
// Le fichier Framework.php du Framework de Tela Botanica doit être appelée avant tout autre chose dans l'application.
21
// Sinon, rien ne sera chargé.
22
// Chemin du fichier chargeant le framework requis
23
$framework = dirname(__FILE__).DIRECTORY_SEPARATOR.'framework.php';
24
if (!file_exists($framework)) {
2021 jpm 25
	$e = "Veuillez paramétrer l'emplacement et la version du Framework dans le fichier $framework";
26
	trigger_error($e, E_USER_ERROR);
1500 delphine 27
} else {
2021 jpm 28
	// Inclusion du Framework
29
	require_once $framework;
1500 delphine 30
 
2021 jpm 31
	// Ajout d'information concernant cette application
32
	Framework::setCheminAppli(__FILE__);// Obligatoire
33
	Framework::setInfoAppli(Config::get('info'));
1500 delphine 34
 
2021 jpm 35
	// Initialisation et lancement du script appelé en ligne de commande
36
	Cli::executer();
2415 jpm 37
}