Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 423 → Rev 424

/trunk/scripts/modules/coste/Coste.php
40,6 → 40,9
case 'nettoyerV1' :
$this->nettoyerVersion1();
break;
case 'creerDscTxt' :
$this->creerDescriptionTxt();
break;
default :
throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
}
133,5 → 136,13
'IGNORE 1 LINES ';
$this->getBdd()->requeter($requete);
}
 
private function creerDescriptionTxt() {
$conteneur = new Conteneur();
$conteneur->setParametre('-v', $this->getParametre('-v'));
require_once dirname(__FILE__)."/Description.php";
$description = new Description($conteneur);
$description->genererDescriptionTxt();
}
}
?>