Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 180 → Rev 181

/trunk/interfaces/controleurs/Versionnage.php
22,6 → 22,7
'classification', 'dom_tax', 'dom_geo', 'dom_code',
'source', 'copyright', 'licence', 'referencement');
private $referentiel = null;
private $referentielDao = null;
private $traitementDao = null;
public function __construct() {
33,6 → 34,7
}
// Chargement des DAO nécessaires
$this->referentielDao = new ReferentielDao();
$this->traitementDao = new TraitementDao();
}
69,6 → 71,9
// Traitement de l'info sur le code du référentiel
if (isset($this->referentiel)) {
// Récupération du nom du référentiel courrant
$donnees['nom_referentiel'] = $this->referentielDao->getNom($this->referentiel);
// Récupération du référentiel courrant
$donnees['ref'] = $this->referentiel;