| 1135 |
aurelien |
1 |
<?php
|
|
|
2 |
//declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Exemple de lancement du script : :
|
|
|
5 |
* /opt/lampp/bin/php cli.php coste -a chargerTous
|
|
|
6 |
*
|
|
|
7 |
* @category php 5.2
|
|
|
8 |
* @package eFlore/Scripts
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @copyright Copyright (c) 2012, Tela Botanica (accueil@tela-botanica.org)
|
|
|
11 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
12 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
13 |
* @version $Id$
|
|
|
14 |
*/
|
|
|
15 |
class Adeterminer extends DelScript {
|
|
|
16 |
|
|
|
17 |
public function executer() {
|
|
|
18 |
try {
|
|
|
19 |
$this->initialiserProjet('adeterminer');
|
|
|
20 |
|
|
|
21 |
// Lancement de l'action demandée
|
|
|
22 |
$cmd = $this->getParametre('a');
|
|
|
23 |
switch ($cmd) {
|
|
|
24 |
case 'alerteMail' :
|
|
|
25 |
$script = $this->chargerClasse('AlerteMailADeterminer');
|
|
|
26 |
$script->executer();
|
|
|
27 |
break;
|
|
|
28 |
default :
|
|
|
29 |
throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
|
|
|
30 |
}
|
|
|
31 |
} catch (Exception $e) {
|
|
|
32 |
$this->traiterErreur($e->getMessage());
|
|
|
33 |
}
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
private function chargerClasse($classe) {
|
|
|
37 |
require_once $classe.'.php';
|
|
|
38 |
return new $classe($this->parametres, $this);
|
|
|
39 |
}
|
|
|
40 |
}
|
|
|
41 |
?>
|