Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 401 | Rev 525 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 401 Rev 500
Line 21... Line 21...
21
	private $nom_retenu = '';
21
	private $nom_retenu = '';
Line 22... Line 22...
22
 
22
 
23
 
23
 
24
	public function initialiser() {
24
	public function initialiser() {
25
		$this->capturerParametres();
25
		$this->capturerParametres();
26
		$this->conteneur = new Conteneur($this->parametres);		
26
		$this->conteneur = new Conteneur($this->parametres);
27
		$this->nom_retenu = $this->conteneur->getNomCourant()->getNomRetenu();
27
		$this->nom_retenu = $this->conteneur->getNomCourant()->getNomRetenu();
Line 28... Line 28...
28
		spl_autoload_register(array($this, 'chargerClassesOnglets'));
28
		spl_autoload_register(array($this, 'chargerClassesOnglets'));
Line 83... Line 83...
83
	}
83
	}
Line 84... Line 84...
84
 
84
 
85
	public function executerOnglet(){
85
	public function executerOnglet(){
86
		$donnees = $this->obtenirDonnees();
86
		$donnees = $this->obtenirDonnees();
87
		header('Content-type: text/html');
87
		header('Content-type: text/html');
88
		echo $this->getVue('fiche_'.$this->onglet, $donnees);
-
 
89
		exit;
88
		$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_'.$this->onglet, $donnees));
Line 90... Line 89...
90
	}
89
	}
91
 
90
 
92
	private function obtenirDonnees() {
91
	private function obtenirDonnees() {