25 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* classe Controleur du module Carte.
|
|
|
5 |
*
|
|
|
6 |
* @package Collection
|
|
|
7 |
* @category Php5
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
12 |
* @version SVN: $Id$
|
|
|
13 |
*/
|
114 |
jpm |
14 |
class Carte extends aControleur {
|
25 |
jpm |
15 |
|
|
|
16 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
17 |
// Méthodes
|
|
|
18 |
/**
|
|
|
19 |
* Fonction d'affichage par défaut, elle appelle la liste des administrateurs
|
|
|
20 |
*/
|
|
|
21 |
public function executerActionParDefaut() {
|
|
|
22 |
return $this->cartographier();
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
/**
|
|
|
26 |
* Cartographier les collections.
|
|
|
27 |
* @return string la vue correspondante
|
|
|
28 |
*/
|
|
|
29 |
public function cartographier() {
|
|
|
30 |
// Initialisation de variable
|
|
|
31 |
$donnees = array();
|
|
|
32 |
|
169 |
jpm |
33 |
|
|
|
34 |
|
25 |
jpm |
35 |
// Création de la carte
|
|
|
36 |
$options = array(
|
169 |
jpm |
37 |
'carte_nom' => Config::get('carte_genere_nom'),
|
30 |
jpm |
38 |
'formule' => Cartographie::FORMULE_PROPORTIONNEL,
|
|
|
39 |
'couleur_claire' => Config::get('carte_couleur_claire'),
|
|
|
40 |
'couleur_foncee' => Config::get('carte_couleur_foncee'),
|
25 |
jpm |
41 |
'fond_fichier' => Config::get('carte_base_nom'),
|
30 |
jpm |
42 |
'fond_dossier' => Application::getChemin().Config::get('carte_fonds_chemin'),
|
|
|
43 |
'stock_dossier' => Config::get('carte_sotckage_chemin'),
|
|
|
44 |
'stock_url' => Config::get('carte_sotckage_url'),
|
|
|
45 |
'debug' => Config::get('carte_mode_debug'));
|
25 |
jpm |
46 |
$cartographie = Composant::fabrique('cartographie', $options);
|
30 |
jpm |
47 |
// Construction des données nécessaires à la cartographie
|
|
|
48 |
$zones = $cartographie->getCarteZones();
|
|
|
49 |
$this->chargerZonesNbre($zones);
|
|
|
50 |
$this->chargerZonesUrls($zones);
|
|
|
51 |
$cartographie->setCarteZones($zones);
|
|
|
52 |
//Debug::printr($zones);
|
|
|
53 |
|
25 |
jpm |
54 |
$cartographie->creerCarte();
|
|
|
55 |
$donnees['map'] = $cartographie->getImageMap();
|
62 |
jpm |
56 |
//$donnees['i18n'] = I18n::get('carte');
|
25 |
jpm |
57 |
|
|
|
58 |
$resultat = $this->getVue('carte', $donnees);
|
|
|
59 |
$this->setSortie(self::RENDU_CORPS, $resultat);
|
85 |
jpm |
60 |
$this->chargerPiedDePage();
|
25 |
jpm |
61 |
}
|
|
|
62 |
|
30 |
jpm |
63 |
private function chargerZonesNbre(&$zones) {
|
171 |
delphine |
64 |
$paca = array("04" => '', "05" => '', "06" => '', 13 => '', 83 => '', 84 => '');
|
153 |
jpm |
65 |
$structureDao = new StructureDao();
|
30 |
jpm |
66 |
$zones_infos = $structureDao->getStructureParZoneGeo('FRD');
|
25 |
jpm |
67 |
foreach ($zones as $id => &$infos) {
|
171 |
delphine |
68 |
if ($this->registre->get('contexte') == 'paca') {
|
|
|
69 |
if (isset($zones_infos[$id]) && isset($paca[$id])) {
|
|
|
70 |
$nbre = $zones_infos[$id];
|
|
|
71 |
$infos['info_nombre'] = $nbre;
|
|
|
72 |
} else {
|
|
|
73 |
$infos['info_nombre'] = 0;
|
|
|
74 |
}
|
25 |
jpm |
75 |
} else {
|
171 |
delphine |
76 |
if (isset($zones_infos[$id])) {
|
|
|
77 |
$nbre = $zones_infos[$id];
|
|
|
78 |
$infos['info_nombre'] = $nbre;
|
|
|
79 |
} else {
|
|
|
80 |
$infos['info_nombre'] = 0;
|
|
|
81 |
}
|
|
|
82 |
}
|
25 |
jpm |
83 |
}
|
|
|
84 |
}
|
|
|
85 |
|
30 |
jpm |
86 |
private function chargerZonesUrls(&$zones) {
|
112 |
jpm |
87 |
$url = $this->obtenirUrlRecherche('str-d:%s');
|
25 |
jpm |
88 |
foreach ($zones as $id => &$infos) {
|
|
|
89 |
$infos['url'] = sprintf($url, $id);
|
|
|
90 |
}
|
|
|
91 |
}
|
|
|
92 |
}
|
|
|
93 |
?>
|