712 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Widget fournissant des interfaces de saisies simplifiée pour différent projets.
|
|
|
5 |
* Encodage en entrée : utf8
|
|
|
6 |
* Encodage en sortie : utf8
|
|
|
7 |
*
|
|
|
8 |
* Cas d'utilisation et documentation :
|
|
|
9 |
* @link http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=AideCELWidgetSaisie
|
|
|
10 |
*
|
|
|
11 |
* Paramètres :
|
|
|
12 |
* ===> projet = chaine [par défaut : Biodiversite34]
|
|
|
13 |
* Indique quel projet nous voulons charger
|
|
|
14 |
*
|
|
|
15 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
16 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
17 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
18 |
* @version $Id$
|
|
|
19 |
* @copyright Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
|
|
|
20 |
*/
|
|
|
21 |
class Saisie extends WidgetCommun {
|
1050 |
jpm |
22 |
|
712 |
jpm |
23 |
const DS = DIRECTORY_SEPARATOR;
|
1345 |
aurelien |
24 |
const PROJET_DEFAUT = 'defaut';
|
1050 |
jpm |
25 |
const WS_SAISIE = "CelWidgetSaisie";
|
1345 |
aurelien |
26 |
const WS_NOM = "noms";
|
1476 |
aurelien |
27 |
private $NS_PROJET_VERSION = "1.01";
|
1345 |
aurelien |
28 |
const EFLORE_API_VERSION = "0.1";
|
1476 |
aurelien |
29 |
private $NS_PROJET = "bdtfx";
|
1050 |
jpm |
30 |
|
1476 |
aurelien |
31 |
private $projetsVersions = array();
|
719 |
jpm |
32 |
private $projet = null;
|
|
|
33 |
private $configProjet = null;
|
1050 |
jpm |
34 |
|
712 |
jpm |
35 |
/**
|
|
|
36 |
* Méthode appelée par défaut pour charger ce widget.
|
|
|
37 |
*/
|
|
|
38 |
public function executer() {
|
|
|
39 |
$retour = null;
|
|
|
40 |
extract($this->parametres);
|
|
|
41 |
|
1345 |
aurelien |
42 |
$this->projet = isset($projet) ? $projet : self::PROJET_DEFAUT;
|
719 |
jpm |
43 |
$this->chargerConfigProjet();
|
1476 |
aurelien |
44 |
$this->chargerProjetsVersion();
|
1050 |
jpm |
45 |
|
1345 |
aurelien |
46 |
$service = isset($service) ? $service : 'widget';
|
719 |
jpm |
47 |
$methode = $this->traiterNomMethodeExecuter($service);
|
712 |
jpm |
48 |
if (method_exists($this, $methode)) {
|
|
|
49 |
$retour = $this->$methode();
|
|
|
50 |
} else {
|
|
|
51 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
|
|
52 |
}
|
|
|
53 |
|
1050 |
jpm |
54 |
$contenu = null;
|
|
|
55 |
$mime = null;
|
|
|
56 |
if (is_array($retour) && array_key_exists('squelette', $retour)) {
|
719 |
jpm |
57 |
$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
|
1475 |
aurelien |
58 |
if($this->projetASquelette()) {
|
|
|
59 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$ext;
|
|
|
60 |
} else {
|
|
|
61 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$ext;
|
|
|
62 |
}
|
712 |
jpm |
63 |
$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
1050 |
jpm |
64 |
$mime = isset($retour['mime']) ? $retour['mime'] : null;
|
|
|
65 |
} else {
|
|
|
66 |
if (count($this->messages) == 0) {
|
|
|
67 |
$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format.";
|
|
|
68 |
}
|
|
|
69 |
$contenu = 'Un problème est survenu : '.print_r($this->messages, true);
|
712 |
jpm |
70 |
}
|
1050 |
jpm |
71 |
|
|
|
72 |
$this->envoyer($contenu, $mime);
|
712 |
jpm |
73 |
}
|
1050 |
jpm |
74 |
|
719 |
jpm |
75 |
private function chargerConfigProjet() {
|
|
|
76 |
$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
|
|
|
77 |
if (file_exists($fichier_config)) {
|
1526 |
jpm |
78 |
if (!$this->configProjet = parse_ini_file($fichier_config)) {
|
719 |
jpm |
79 |
$this->messages[] = "Le fichier ini '$fichier_config' du projet n'a pu être chargé.";
|
1050 |
jpm |
80 |
}
|
719 |
jpm |
81 |
} else {
|
1345 |
aurelien |
82 |
$this->debug[] = "Le fichier ini '$fichier_config' du projet n'existe pas.";
|
719 |
jpm |
83 |
}
|
|
|
84 |
}
|
1526 |
jpm |
85 |
|
1476 |
aurelien |
86 |
private function chargerProjetsVersion() {
|
1526 |
jpm |
87 |
if (isset($this->configProjet)) {
|
|
|
88 |
foreach ($this->configProjet as $config => $valeur) {
|
|
|
89 |
if(strstr($config,'.version')) {
|
|
|
90 |
$this->projetsVersions[str_replace('.version', '', $config)] = $valeur;
|
|
|
91 |
}
|
1476 |
aurelien |
92 |
}
|
|
|
93 |
}
|
|
|
94 |
}
|
1050 |
jpm |
95 |
|
1345 |
aurelien |
96 |
public function executerWidget() {
|
1476 |
aurelien |
97 |
$referentiel_impose = false;
|
1526 |
jpm |
98 |
if (isset($_GET['referentiel']) && $_GET['referentiel'] != '') {
|
1476 |
aurelien |
99 |
$this->NS_PROJET = isset($_GET['referentiel']) && $_GET['referentiel'] != '' ? $_GET['referentiel'] : $this->NS_PROJET;
|
|
|
100 |
$this->NS_PROJET_VERSION = $this->projetsVersions[$this->NS_PROJET];
|
|
|
101 |
$referentiel_impose = true;
|
|
|
102 |
}
|
1526 |
jpm |
103 |
|
1050 |
jpm |
104 |
$widget['squelette'] = $this->projet;
|
|
|
105 |
$widget['donnees'] = array();
|
|
|
106 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
107 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
1536 |
jpm |
108 |
$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
|
1526 |
jpm |
109 |
|
1536 |
jpm |
110 |
|
1516 |
aurelien |
111 |
$widget['donnees']['logo'] = isset($_GET['logo']) ? $_GET['logo'] : 'defaut';
|
|
|
112 |
$widget['donnees']['titre'] = isset($_GET['titre']) ? $_GET['titre'] : 'defaut';
|
|
|
113 |
$widget['donnees']['titre'] = ($widget['donnees']['titre'] == '0') ? '' : $widget['donnees']['titre'];
|
1526 |
jpm |
114 |
|
1475 |
aurelien |
115 |
// cas du projet par défaut ou bien d'un projet n'ayant pas de squelette spécifique
|
1526 |
jpm |
116 |
if ($this->projet == 'defaut' || $this->projet == 'florileges' || !$this->projetASquelette()) {
|
1345 |
aurelien |
117 |
$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
|
1476 |
aurelien |
118 |
$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->NS_PROJET, self::WS_NOM);
|
|
|
119 |
$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
|
1345 |
aurelien |
120 |
$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
|
1476 |
aurelien |
121 |
$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
|
|
|
122 |
$widget['donnees']['ns_referentiel'] = $this->NS_PROJET.':'.$this->NS_PROJET_VERSION;
|
|
|
123 |
$widget['donnees']['ns_projet'] = $this->NS_PROJET;
|
|
|
124 |
$widget['donnees']['ns_version'] = $this->NS_PROJET_VERSION;
|
|
|
125 |
$widget['donnees']['referentiel_impose'] = $referentiel_impose;
|
|
|
126 |
$widget['donnees']['projets_versions'] = $this->projetsVersions;
|
1526 |
jpm |
127 |
$widget['donnees']['espece_imposee'] = false;
|
|
|
128 |
$widget['donnees']['nn_espece_defaut'] = '';
|
|
|
129 |
$widget['donnees']['nom_sci_espece_defaut'] = '';
|
1536 |
jpm |
130 |
$widget['donnees']['infos_espece'] = '{}';
|
1526 |
jpm |
131 |
|
|
|
132 |
if ($this->especeEstImposee()) {
|
|
|
133 |
$nom = $this->executerChargementInfosTaxon($_GET['num_nom']);
|
1418 |
aurelien |
134 |
$widget['donnees']['espece_imposee'] = true;
|
|
|
135 |
$widget['donnees']['nn_espece_defaut'] = $_GET['num_nom'];
|
1419 |
aurelien |
136 |
$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_sci'];
|
|
|
137 |
$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
|
1418 |
aurelien |
138 |
}
|
1536 |
jpm |
139 |
}
|
|
|
140 |
if ($this->projet != 'defaut' || $this->projetASquelette()) {
|
1345 |
aurelien |
141 |
$widget['donnees']['taxons'] = $this->recupererListeTaxon();
|
|
|
142 |
$widget['donnees']['milieux'] = $this->parserMilieux();
|
719 |
jpm |
143 |
}
|
1345 |
aurelien |
144 |
return $widget;
|
719 |
jpm |
145 |
}
|
1526 |
jpm |
146 |
|
1475 |
aurelien |
147 |
private function projetASquelette() {
|
1526 |
jpm |
148 |
// fonction très simple qui ne teste que si le dossier du projet courant
|
1475 |
aurelien |
149 |
// existe, mais elle suffit pour le moment.
|
|
|
150 |
return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
|
|
|
151 |
}
|
1050 |
jpm |
152 |
|
1345 |
aurelien |
153 |
public function executerTaxons() {
|
|
|
154 |
$widget['squelette'] = $this->projet.'_taxons';
|
|
|
155 |
$widget['squelette_ext'] = '.tpl.js';
|
|
|
156 |
$widget['donnees'] = array();
|
|
|
157 |
$taxons = $this->recupererListeTaxon();
|
|
|
158 |
$taxons_tries = array();
|
|
|
159 |
foreach ($taxons as $taxon) {
|
|
|
160 |
$taxons_tries[$taxon['num_nom_sel']] = $taxon;
|
|
|
161 |
}
|
|
|
162 |
$widget['donnees']['taxons'] = json_encode($taxons_tries);
|
|
|
163 |
return $widget;
|
|
|
164 |
}
|
|
|
165 |
|
|
|
166 |
private function recupererListeTaxon() {
|
|
|
167 |
$taxons = null;
|
|
|
168 |
$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
|
|
|
169 |
if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
|
712 |
jpm |
170 |
$taxons = $this->decomposerFichierTsv($fichier_tsv);
|
1539 |
jpm |
171 |
$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
|
1345 |
aurelien |
172 |
} else {
|
|
|
173 |
$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
|
|
|
174 |
}
|
|
|
175 |
return $taxons;
|
|
|
176 |
}
|
|
|
177 |
|
|
|
178 |
private function decomposerFichierTsv($fichier, $delimiter = "\t"){
|
1536 |
jpm |
179 |
$header = null;
|
1345 |
aurelien |
180 |
$data = array();
|
|
|
181 |
if (($handle = fopen($fichier, 'r')) !== FALSE) {
|
|
|
182 |
while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
|
|
|
183 |
if (!$header) {
|
|
|
184 |
$header = $row;
|
|
|
185 |
} else {
|
|
|
186 |
$data[] = array_combine($header, $row);
|
|
|
187 |
}
|
|
|
188 |
}
|
|
|
189 |
fclose($handle);
|
|
|
190 |
}
|
|
|
191 |
return $data;
|
712 |
jpm |
192 |
}
|
1050 |
jpm |
193 |
|
1345 |
aurelien |
194 |
private function parserMilieux() {
|
1050 |
jpm |
195 |
$infosMilieux = array();
|
1536 |
jpm |
196 |
if (isset($this->configProjet['milieux'])) {
|
|
|
197 |
$milieux = explode('|', $this->configProjet['milieux']);
|
|
|
198 |
foreach ($milieux as $milieu) {
|
|
|
199 |
$details = explode(';', $milieu);
|
|
|
200 |
if (isset($details[1])) {
|
|
|
201 |
$infosMilieux[$details[0]] = $details[1];
|
|
|
202 |
} else {
|
|
|
203 |
$infosMilieux[$details[0]] = '';
|
|
|
204 |
}
|
1050 |
jpm |
205 |
}
|
1536 |
jpm |
206 |
ksort($infosMilieux);
|
1050 |
jpm |
207 |
}
|
|
|
208 |
return $infosMilieux;
|
|
|
209 |
}
|
1526 |
jpm |
210 |
|
1418 |
aurelien |
211 |
private function especeEstImposee() {
|
1536 |
jpm |
212 |
return (isset($_GET['num_nom']) && $_GET['num_nom'] != '');
|
1418 |
aurelien |
213 |
}
|
1526 |
jpm |
214 |
|
1418 |
aurelien |
215 |
private function executerChargementInfosTaxon($num_nom) {
|
1476 |
aurelien |
216 |
$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->NS_PROJET, $num_nom);
|
1418 |
aurelien |
217 |
$infos = json_decode(file_get_contents($url_service_infos));
|
1854 |
aurelien |
218 |
// trop de champs injectés dans les infos espèces peut
|
|
|
219 |
// faire planter javascript
|
|
|
220 |
$champs_a_garder = array('id', 'nom_sci','nom_sci_complet',
|
|
|
221 |
'famille','nom_retenu.id', 'nom_retenu.libelle', 'num_taxonomique');
|
1419 |
aurelien |
222 |
$resultat = array();
|
1539 |
jpm |
223 |
if (isset($infos) && !empty($infos)) {
|
1419 |
aurelien |
224 |
$infos = (array)$infos;
|
1854 |
aurelien |
225 |
if(isset($infos['nom_sci']) && $infos['nom_sci'] != '') {
|
|
|
226 |
$resultat = array_intersect_key($infos, array_flip($champs_a_garder));
|
|
|
227 |
$resultat['retenu'] = ($infos['id'] == $infos['nom_retenu.id']) ? "true" : "false";
|
|
|
228 |
}
|
1419 |
aurelien |
229 |
}
|
1418 |
aurelien |
230 |
return $resultat;
|
|
|
231 |
}
|
1050 |
jpm |
232 |
|
1345 |
aurelien |
233 |
public function executerUploadImage() {
|
|
|
234 |
$retour = array(
|
|
|
235 |
'squelette' => $this->projet.'_image',
|
|
|
236 |
'squelette_ext' => '.tpl.xml',
|
|
|
237 |
'mime' => 'text/xml',
|
|
|
238 |
'donnees' => array(
|
|
|
239 |
'urlMiniature' => '',
|
|
|
240 |
'imageNom' => '',
|
|
|
241 |
'message' => '',
|
|
|
242 |
'debogage' => ''));
|
|
|
243 |
$message = '';
|
|
|
244 |
$debogage = '';
|
|
|
245 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_OK) {
|
|
|
246 |
if (is_uploaded_file($_FILES['fichier']['tmp_name'])) {
|
1355 |
aurelien |
247 |
if ($this->verifierFormatJpeg($_FILES['fichier']['tmp_name'])) {
|
1345 |
aurelien |
248 |
$dossierStockage = $this->config['chemins']['imagesTempDossier'];
|
|
|
249 |
|
|
|
250 |
$nomFichierOriginal = preg_replace('/[.](jpeg|jpg)$/i', '.jpg', strtolower($_FILES['fichier']['name']));
|
|
|
251 |
$originalChemin = $dossierStockage.$nomFichierOriginal;
|
|
|
252 |
$deplacementOk = move_uploaded_file($_FILES['fichier']['tmp_name'], $originalChemin);
|
|
|
253 |
|
|
|
254 |
if ($deplacementOk === true) {
|
|
|
255 |
$miniatureFichier = str_replace('.jpg', '_min.jpg', $nomFichierOriginal);
|
|
|
256 |
$miniatureChemin = $dossierStockage.$miniatureFichier;
|
|
|
257 |
|
|
|
258 |
// Parametres
|
|
|
259 |
$largeurIdeale = 100;
|
|
|
260 |
$hauteurIdeale = 100;
|
|
|
261 |
$qualite = 85;
|
|
|
262 |
|
|
|
263 |
// Calcul de la hauteur et de la largeur optimale de la miniature
|
|
|
264 |
$taillesImgOriginale = getimagesize($originalChemin);
|
|
|
265 |
$largeurOrigine = $taillesImgOriginale[0];
|
|
|
266 |
$hauteurOrigine = $taillesImgOriginale[1];
|
|
|
267 |
|
|
|
268 |
$largeurMin = $largeurIdeale;
|
|
|
269 |
$hauteurMin = (int) ($hauteurOrigine * ($largeurIdeale / $largeurOrigine));
|
|
|
270 |
if ($hauteurMin > $hauteurIdeale) {
|
|
|
271 |
$hauteurMin = $hauteurIdeale;
|
|
|
272 |
$largeurMin = (int)($largeurOrigine * ($hauteurMin / $hauteurOrigine));
|
|
|
273 |
}
|
|
|
274 |
|
|
|
275 |
// Création de la miniature
|
|
|
276 |
$imageOriginale = imagecreatefromjpeg($originalChemin);
|
|
|
277 |
$imageMiniature = imagecreatetruecolor($largeurMin, $hauteurMin);
|
|
|
278 |
$couleurFond = imagecolorallocate($imageMiniature, 255, 255, 255);
|
|
|
279 |
imagefill($imageMiniature, 0, 0, $couleurFond);
|
|
|
280 |
imagecopyresized($imageMiniature, $imageOriginale, 0, 0, 0, 0, $largeurMin, $hauteurMin, $largeurOrigine, $hauteurOrigine);
|
|
|
281 |
imagejpeg($imageMiniature, $miniatureChemin, $qualite);
|
|
|
282 |
imagedestroy($imageMiniature);
|
|
|
283 |
imagedestroy($imageOriginale);
|
|
|
284 |
|
|
|
285 |
// Retour des infos
|
|
|
286 |
$retour['donnees']['urlMiniature'] = sprintf($this->config['chemins']['imagesTempUrlTpl'], $miniatureFichier);
|
|
|
287 |
$retour['donnees']['imageNom'] = $nomFichierOriginal;
|
|
|
288 |
} else {
|
|
|
289 |
$message = "L'image n'a pu être déplacé sur le serveur.";
|
|
|
290 |
}
|
1475 |
aurelien |
291 |
} else {
|
1345 |
aurelien |
292 |
$message = "L'image n'est pas au format JPEG.";
|
|
|
293 |
}
|
|
|
294 |
} else {
|
|
|
295 |
$message = "L'image n'a pu être téléversée.";
|
|
|
296 |
$debogage = $message.print_r($_FILES, true);
|
|
|
297 |
}
|
|
|
298 |
} else {
|
|
|
299 |
if ($_FILES['fichier']['error'] == UPLOAD_ERR_FORM_SIZE) {
|
|
|
300 |
$message = "L'image téléversée excède la taille maximum autorisée.".
|
|
|
301 |
"Veuillez modifier votre image avant de la téléverser à nouveau.";
|
|
|
302 |
} else {
|
|
|
303 |
$message = "Une erreur de transfert a eu lieu (téléversement interrompu).";
|
|
|
304 |
}
|
|
|
305 |
$debogage = "Code erreur : {$_FILES['fichier']['error']}. ".
|
|
|
306 |
"Voir : http://php.net/manual/fr/features.file-upload.errors.php";
|
|
|
307 |
}
|
|
|
308 |
// Retour des infos
|
|
|
309 |
$retour['donnees']['message'] = $message;
|
|
|
310 |
$retour['donnees']['debogage'] = $debogage;
|
|
|
311 |
return $retour;
|
1050 |
jpm |
312 |
}
|
1526 |
jpm |
313 |
|
|
|
314 |
// Il ne faut pas utiliser l'index type du tableau files pour tester
|
1355 |
aurelien |
315 |
// si une image est en jpeg car le type renvoyé par les navigateurs
|
1526 |
jpm |
316 |
// peut varier (ex. sous ie qui renvoie image/pjpeg
|
1355 |
aurelien |
317 |
private function verifierFormatJpeg($chemin) {
|
|
|
318 |
// get imagesize renvoie un résultat consistant par contre
|
|
|
319 |
$infos = getimagesize($chemin, $infos);
|
1526 |
jpm |
320 |
return (isset($infos['mime']) && $infos['mime'] == 'image/jpeg');
|
1355 |
aurelien |
321 |
}
|
1526 |
jpm |
322 |
|
|
|
323 |
private function array2js($array,$show_keys) {
|
1536 |
jpm |
324 |
$tableauJs = '{}';
|
|
|
325 |
if (!empty($array)) {
|
|
|
326 |
$total = count($array) - 1;
|
|
|
327 |
$i = 0;
|
|
|
328 |
$dimensions = array();
|
|
|
329 |
foreach ($array as $key => $value) {
|
|
|
330 |
if (is_array($value)) {
|
|
|
331 |
$dimensions[$i] = array2js($value,$show_keys);
|
|
|
332 |
if ($show_keys) {
|
|
|
333 |
$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
334 |
}
|
|
|
335 |
} else {
|
|
|
336 |
$dimensions[$i] = '"'.addslashes($value).'"';
|
|
|
337 |
if ($show_keys) {
|
|
|
338 |
$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
339 |
}
|
1526 |
jpm |
340 |
}
|
1536 |
jpm |
341 |
if ($i == 0) {
|
|
|
342 |
$dimensions[$i] = '{'.$dimensions[$i];
|
1526 |
jpm |
343 |
}
|
1536 |
jpm |
344 |
if ($i == $total) {
|
|
|
345 |
$dimensions[$i].= '}';
|
|
|
346 |
}
|
|
|
347 |
$i++;
|
1526 |
jpm |
348 |
}
|
1536 |
jpm |
349 |
$tableauJs = implode(',', $dimensions);
|
1526 |
jpm |
350 |
}
|
1536 |
jpm |
351 |
return $tableauJs;
|
1526 |
jpm |
352 |
}
|
1345 |
aurelien |
353 |
}
|
|
|
354 |
?>
|