Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1739 → Rev 1740

/tags/v1.3-beryllium/scripts/bibliotheque/DelScript.php
New file
0,0 → 1,25
<?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;
}
}
?>