Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
1020 aurelien 1
<?php
1867 jpm 2
// declare(encoding='UTF-8');
1020 aurelien 3
/**
1683 jpm 4
 * Classe mère des scripts DEL
1020 aurelien 5
 *
1867 jpm 6
 * @category   DEL
7
 * @package    Scripts
8
 * @subpackage Bibliotheque
9
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
10
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
12
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
13
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
14
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
1020 aurelien 15
 */
16
abstract class DelScript extends Script {
17
 
18
	private $projetNom = null;
19
 
20
	public function getProjetNom() {
21
		return $this->projetNom;
22
	}
23
 
24
	protected function initialiserProjet($projetNom) {
25
		$this->projetNom = $projetNom;
26
	}
1867 jpm 27
}