Rev 1569 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
/**
* Classe mère des scripts DEL
*
* @category php 5.4
* @package DEL
* @subpackage Scripts
* @author Aurélien PERONNET <aurelien@tela-botanica.org>
* @copyright Copyright (c) 2012, Tela Botanica (accueil@tela-botanica.org)
* @license CeCILL v2 http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt
* @license GNU-GPL http://www.gnu.org/licenses/gpl.html
*/
abstract class DelScript extends Script {
private $projetNom = null;
public function getProjetNom() {
return $this->projetNom;
}
protected function initialiserProjet($projetNom) {
$this->projetNom = $projetNom;
}
}
?>