Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 293 → Rev 294

/trunk/modules/fiche/formateurs/Nomenclature.php
15,13 → 15,13
class Nomenclature extends aControleur {
 
private $conteneur = null;
private $nomCourrant = null;
private $nomCourant = null;
private $noms = null;
private $meta = null;
 
public function __construct(Conteneur $conteneur) {
$this->conteneur = $conteneur;
$this->nomCourrant = $this->conteneur->getNomCourrant();
$this->nomCourant = $this->conteneur->getNomCourant();
$this->noms = $this->conteneur->getApiNoms();
$this->appUrls = $this->conteneur->getAppUrls();
}
39,7 → 39,7
}
 
private function getSynonymes() {
$nns = $this->nomCourrant->getNns();
$nns = $this->nomCourant->getNns();
$synonymes = $this->noms->getSynonymes($nns);
return $synonymes['resultat'];
}