Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 181 → Rev 182

/trunk/modules/recherche/Recherche.php
17,11 → 17,11
$this->executerAccueil();
}
public function executerAccueil($donnees = array()) {
public function executerAccueil($donneesMoteur = array()) {
$niveau = new Niveau();
$donnees['form_niveau'] = $niveau->afficherNiveau();
$recherchesimple = new RechercheSimple();
$donnees['form_nom'] = $recherchesimple->executerFormulaireNom();
$donnees['form_nom'] = $recherchesimple->executerFormulaireNom($donneesMoteur);
$this->afficherAccueil($donnees);
}
/trunk/modules/recherche_simple/RechercheSimple.php
39,14 → 39,6
 
return $this->getVue('form_nom', $donnees);
}
 
public function executerForm() {
$donnees = Registre::get('donneesMoteur');
$donnees['form_niveau'] = $this->afficherNiveau();
$donnees['form_nom'] = $this->executerFormulaireNom($donnees);
$this->afficherAccueil($donnees);
Registre::detruire('donneesMoteur');
}
}
?>