Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 288 | Rev 1126 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 288 Rev 960
1
<?php
1
<?php
2
// declare(encoding='UTF-8');
2
// declare(encoding='UTF-8');
3
/**
3
/**
4
 * Classe mère du module fiche metadonnées.
4
 * Classe mère du module fiche metadonnées.
5
 *
5
 *
6
 * @category	PHP 5.2
6
 * @category	PHP 5.2
7
 * @package		eflore-consultation
7
 * @package		eflore-consultation
8
 * @author		Aurélien Peronnet <aurelien@tela-botanica.org>
8
 * @author		Aurélien Peronnet <aurelien@tela-botanica.org>
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
 * @author		Delphine CAUQUIL <delphine@tela-botanica.org>
10
 * @author		Delphine CAUQUIL <delphine@tela-botanica.org>
11
 * @copyright	2011 Tela-Botanica
11
 * @copyright	2011 Tela-Botanica
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
12
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
13
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
13
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
14
 * @version		$Id$
14
 * @version		$Id$
15
 */
15
 */
16
class FicheMetadonnees extends aControleur {
16
class FicheMetadonnees extends aControleur {
17
 
17
 
18
	private $projet = '';
18
	private $projet = '';
19
	private $serviceMetaDonnees;
19
	private $serviceMetaDonnees;
20
 
20
 
21
	public function __construct($metadonnees = null) {
21
	public function __construct($metadonnees = null) {
22
		$this->capturerParametres();
22
		$this->capturerParametres();
23
		$this->serviceMetaDonnees = (is_null($this->serviceMetaDonnees)) ? new MetaDonnees($this->projet) : $metadonnees;
23
		$this->serviceMetaDonnees = (is_null($this->serviceMetaDonnees)) ? new MetaDonnees($this->projet) : $metadonnees;
24
	}
24
	}
25
 
25
 
26
	public function executerActionParDefaut() {
26
	public function executerActionParDefaut() {
27
		$this->executerAffichageMetaDonnees();
27
		$this->executerAffichageMetaDonnees();
28
	}
28
	}
29
 
29
 
30
	public function chargerMetadonneesHtml() {
30
	public function chargerMetadonneesHtml() {
31
		$donnees['metadonnees'] = $this->serviceMetaDonnees->getMetaDonnees();
31
		$donnees['metadonnees'] = $this->serviceMetaDonnees->getMetaDonnees();
32
		$html = $this->getVue(dirname(__FILE__).'/squelettes/metadonnees', $donnees);
32
		$html = $this->getVue(dirname(__FILE__).'/squelettes/metadonnees', $donnees);
33
		return $html;
33
		return $html;
34
	}
34
	}
35
 
35
 
36
	public function executerAffichageMetaDonnees($donnees) {
36
	public function executerAffichageMetaDonnees($donnees) {
37
		header('Content-type: text/html');
37
		header('Content-type: text/html; charset=UTF-8');
38
		$html = $this->chargerMetadonneesHtml();
38
		$html = $this->chargerMetadonneesHtml();
39
		echo $html;
39
		echo $html;
40
		exit;
40
		exit;
41
	}
41
	}
42
 
42
 
43
	private function capturerParametres() {
43
	private function capturerParametres() {
44
		if (isset($_GET['projet'])) {
44
		if (isset($_GET['projet'])) {
45
			$this->projet = $_GET['projet'];
45
			$this->projet = $_GET['projet'];
46
		}
46
		}
47
	}
47
	}
48
}
48
}
49
?>
49
?>