Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 26 → Rev 27

/trunk/controleurs/aControleur.php
97,7 → 97,21
*/
protected function chargerPiedDePage() {
$donnees['appli'] = Framework::getInfoAppli();
$this->setSortie(self::RENDU_PIED, $this->getVue('pied', $donnees));
$donnees['i18n'] = array_merge(I18n::get('Pied'), I18n::get('General'));
$this->setSortie(self::RENDU_PIED, $this->getVue('pied_page', $donnees));
}
protected function obtenirUrlRecherche($txt = null) {
$this->url->setRequete(false);
$this->url->setVariableRequete('module', 'Recherche');
$this->url->setVariableRequete('action', 'rechercher');
if (!is_null($txt)) {
$this->url->setVariableRequete('recherche', $txt);
}
$url = $this->url->getURL();
$this->url->unsetVariablesRequete(array('module', 'action', 'recherche'));
return $url;
}
}
?>