Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1126 Rev 1128
Line 27... Line 27...
27
		$this->executerAffichageMetaDonnees();
27
		$this->executerAffichageMetaDonnees();
28
	}
28
	}
Line 29... Line 29...
29
 
29
 
30
	public function chargerMetadonneesHtml() {
30
	public function chargerMetadonneesHtml() {
-
 
31
		$meta = $this->serviceMetaDonnees->getMetaDonnees();
31
		$meta = $this->serviceMetaDonnees->getMetaDonnees();
32
		$donnees['i18n'] = I18n::get('Metadonnees');
32
		foreach ($meta as $index => $metadonnees) {
33
		foreach ($meta as $index => $metadonnees) {
33
			$meta[$index] = $this->formaterClesMetadonnees($metadonnees);
34
			$meta[$index] = $this->formaterClesMetadonnees($metadonnees);
34
		}
35
		}
35
		$donnees['metadonnees'] = $meta;
-
 
36
		$donnees['i18n'] = I18n::get('Metadonnees');
36
		$donnees['metadonnees'] = $meta;
37
		$html = $this->getVue(dirname(__FILE__).'/squelettes/metadonnees', $donnees);
37
		$html = $this->getVue(dirname(__FILE__).'/squelettes/metadonnees', $donnees);
38
		return $html;
38
		return $html;
Line 39... Line 39...
39
	}
39
	}