265 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe mère du module fiche metadonnées.
|
|
|
5 |
*
|
|
|
6 |
* @category PHP 5.2
|
|
|
7 |
* @package eflore-consultation
|
|
|
8 |
* @author Aurélien Peronnet <aurelien@tela-botanica.org>
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @author Delphine CAUQUIL <delphine@tela-botanica.org>
|
|
|
11 |
* @copyright 2011 Tela-Botanica
|
|
|
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
|
|
|
14 |
* @version $Id$
|
|
|
15 |
*/
|
|
|
16 |
class FicheMetadonnees extends aControleur {
|
|
|
17 |
|
|
|
18 |
private $projet = '';
|
|
|
19 |
private $serviceMetaDonnees;
|
|
|
20 |
|
|
|
21 |
public function __construct($metadonnees = null) {
|
|
|
22 |
$this->capturerParametres();
|
|
|
23 |
$this->serviceMetaDonnees = (is_null($this->serviceMetaDonnees)) ? new MetaDonnees($this->projet) : $metadonnees;
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
public function executerActionParDefaut() {
|
|
|
27 |
$this->executerAffichageMetaDonnees();
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
public function chargerMetadonneesHtml() {
|
|
|
31 |
$donnees['metadonnees'] = $this->serviceMetaDonnees->getMetaDonnees();
|
|
|
32 |
$html = $this->getVue(dirname(__FILE__).'/squelettes/metadonnees', $donnees);
|
|
|
33 |
|
|
|
34 |
return $html;
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
public function executerAffichageMetaDonnees($donnees) {
|
|
|
38 |
header('Content-type: text/html');
|
|
|
39 |
echo $html;
|
|
|
40 |
exit;
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
private function capturerParametres() {
|
|
|
44 |
if (isset($_GET['projet'])) {
|
|
|
45 |
$this->projet = $_GET['projet'];
|
|
|
46 |
}
|
|
|
47 |
}
|
|
|
48 |
|
|
|
49 |
protected function recupererTableauConfig($param) {
|
|
|
50 |
$tableau = array();
|
|
|
51 |
$tableauPartiel = explode(',', Config::get($param));
|
|
|
52 |
$tableauPartiel = array_map('trim', $tableauPartiel);
|
|
|
53 |
foreach ($tableauPartiel as $champ) {
|
|
|
54 |
if (strpos($champ, '=') === false) {
|
|
|
55 |
$tableau[] = $champ;
|
|
|
56 |
} else {
|
|
|
57 |
list($cle, $val) = explode('=', $champ);
|
|
|
58 |
$tableau[$cle] = $val;
|
|
|
59 |
}
|
|
|
60 |
}
|
|
|
61 |
return $tableau;
|
|
|
62 |
}
|
|
|
63 |
}
|
|
|
64 |
?>
|