Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 230 → Rev 231

/trunk/modules/fiche/Fiche.php
28,16 → 28,15
$this->executerAction('Recherche', 'executerAccueil', $donnees_recherche);
$blocs_niveaux = $this->recupererTableauConfig('blocs_fiche_defaut');
$donnees['blocs'] = '"'.str_replace('|', '","', $blocs_niveaux[Registre::get('parametres.niveau')]).'"';
if (isset($_GET['onglet'])) {
echo $this->getVue('fiche_'.$this->onglet, $donnees);exit;
} else {
$donnees['onglet'] = $this->getVue('fiche_'.$this->onglet, $donnees);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_accueil', $donnees), true);
}
$donnees['onglet'] = $this->getVue('fiche_'.$this->onglet, $donnees);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_accueil', $donnees), true);
}
public function executerOnglet(){
$donnees = array();
header('Content-type: text/html');
echo $this->getVue('fiche_'.$this->onglet, $donnees);
exit;
}
private function capturerParametres() {