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 :
|
2408 |
jpm |
12 |
* ===> projet = chaine [par défaut : defaut] : indique le widgetde saisie à charger.
|
|
|
13 |
* ===> mission = chaine [par défaut : vide] : permet de charger un "sous-widget" vis à vis du projet.
|
712 |
jpm |
14 |
* Indique quel projet nous voulons charger
|
|
|
15 |
*
|
2408 |
jpm |
16 |
* @author Mathias CHOUET <mathias@tela-botanica.org>
|
|
|
17 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
18 |
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
|
|
|
19 |
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
|
|
|
20 |
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
|
|
|
21 |
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
|
712 |
jpm |
22 |
*/
|
|
|
23 |
class Saisie extends WidgetCommun {
|
1050 |
jpm |
24 |
|
712 |
jpm |
25 |
const DS = DIRECTORY_SEPARATOR;
|
1345 |
aurelien |
26 |
const PROJET_DEFAUT = 'defaut';
|
1580 |
jpm |
27 |
const WS_SAISIE = 'CelWidgetSaisie';
|
1888 |
mathias |
28 |
const WS_UPLOAD = 'CelWidgetUploadImageTemp';
|
1580 |
jpm |
29 |
const WS_OBS = 'CelObs';
|
|
|
30 |
const WS_NOM = 'noms';
|
|
|
31 |
const EFLORE_API_VERSION = '0.1';
|
1050 |
jpm |
32 |
|
2408 |
jpm |
33 |
private $ns_referentiel = 'bdtfx';
|
719 |
jpm |
34 |
private $projet = null;
|
|
|
35 |
private $configProjet = null;
|
2408 |
jpm |
36 |
private $configMission = null;
|
1050 |
jpm |
37 |
|
712 |
jpm |
38 |
/**
|
|
|
39 |
* Méthode appelée par défaut pour charger ce widget.
|
|
|
40 |
*/
|
|
|
41 |
public function executer() {
|
|
|
42 |
$retour = null;
|
|
|
43 |
extract($this->parametres);
|
|
|
44 |
|
2497 |
aurelien |
45 |
$this->projet = (isset($projet) && trim($projet) != "") ? explode(',', $projet)[0] : self::PROJET_DEFAUT;
|
719 |
jpm |
46 |
$this->chargerConfigProjet();
|
1050 |
jpm |
47 |
|
1345 |
aurelien |
48 |
$service = isset($service) ? $service : 'widget';
|
719 |
jpm |
49 |
$methode = $this->traiterNomMethodeExecuter($service);
|
712 |
jpm |
50 |
if (method_exists($this, $methode)) {
|
|
|
51 |
$retour = $this->$methode();
|
|
|
52 |
} else {
|
|
|
53 |
$this->messages[] = "Ce type de service '$methode' n'est pas disponible.";
|
|
|
54 |
}
|
|
|
55 |
|
1050 |
jpm |
56 |
$contenu = null;
|
|
|
57 |
$mime = null;
|
|
|
58 |
if (is_array($retour) && array_key_exists('squelette', $retour)) {
|
719 |
jpm |
59 |
$ext = (isset($retour['squelette_ext'])) ? $retour['squelette_ext'] : '.tpl.html';
|
2406 |
jpm |
60 |
if ($this->projetASquelette()) {
|
1475 |
aurelien |
61 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet.self::DS.$retour['squelette'].$ext;
|
|
|
62 |
} else {
|
|
|
63 |
$squelette = dirname(__FILE__).self::DS.'squelettes'.self::DS.'defaut'.self::DS.'defaut'.$ext;
|
|
|
64 |
}
|
712 |
jpm |
65 |
$contenu = $this->traiterSquelettePhp($squelette, $retour['donnees']);
|
1050 |
jpm |
66 |
$mime = isset($retour['mime']) ? $retour['mime'] : null;
|
|
|
67 |
} else {
|
|
|
68 |
if (count($this->messages) == 0) {
|
|
|
69 |
$this->messages[] = "La méthode du sous-service ne renvoie pas les données dans le bon format.";
|
|
|
70 |
}
|
|
|
71 |
$contenu = 'Un problème est survenu : '.print_r($this->messages, true);
|
712 |
jpm |
72 |
}
|
1050 |
jpm |
73 |
|
|
|
74 |
$this->envoyer($contenu, $mime);
|
712 |
jpm |
75 |
}
|
1050 |
jpm |
76 |
|
719 |
jpm |
77 |
private function chargerConfigProjet() {
|
|
|
78 |
$fichier_config = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'.ini';
|
|
|
79 |
if (file_exists($fichier_config)) {
|
2408 |
jpm |
80 |
if ($this->configProjet = parse_ini_file($fichier_config, true)) {
|
|
|
81 |
if (isset($_GET['mission'])) {
|
|
|
82 |
$mission = strtolower(trim($_GET['mission']));
|
|
|
83 |
if (isset($this->configProjet[$mission])) {
|
|
|
84 |
$this->configMission = $this->configProjet[$mission];
|
|
|
85 |
}
|
|
|
86 |
}
|
|
|
87 |
} else {
|
719 |
jpm |
88 |
$this->messages[] = "Le fichier ini '$fichier_config' du projet n'a pu être chargé.";
|
1050 |
jpm |
89 |
}
|
719 |
jpm |
90 |
} else {
|
1345 |
aurelien |
91 |
$this->debug[] = "Le fichier ini '$fichier_config' du projet n'existe pas.";
|
719 |
jpm |
92 |
}
|
|
|
93 |
}
|
1526 |
jpm |
94 |
|
2408 |
jpm |
95 |
private function projetASquelette() {
|
|
|
96 |
// fonction très simple qui ne teste que si le dossier du projet courant
|
|
|
97 |
// existe, mais elle suffit pour le moment.
|
|
|
98 |
return file_exists(dirname(__FILE__).self::DS.'squelettes'.self::DS.$this->projet);
|
1476 |
aurelien |
99 |
}
|
1050 |
jpm |
100 |
|
1345 |
aurelien |
101 |
public function executerWidget() {
|
1476 |
aurelien |
102 |
$referentiel_impose = false;
|
2343 |
aurelien |
103 |
if (isset($_GET['referentiel']) && $_GET['referentiel'] != '' && $_GET['referentiel'] != "autre") {
|
2408 |
jpm |
104 |
$this->ns_referentiel = isset($_GET['referentiel']) && $_GET['referentiel'] != '' ? $_GET['referentiel'] : $this->ns_referentiel;
|
1476 |
aurelien |
105 |
$referentiel_impose = true;
|
|
|
106 |
}
|
1526 |
jpm |
107 |
|
1050 |
jpm |
108 |
$widget['squelette'] = $this->projet;
|
|
|
109 |
$widget['donnees'] = array();
|
|
|
110 |
$widget['donnees']['url_base'] = sprintf($this->config['chemins']['baseURLAbsoluDyn'], '');
|
|
|
111 |
$widget['donnees']['url_ws_saisie'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_SAISIE);
|
1580 |
jpm |
112 |
$widget['donnees']['url_ws_obs'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_OBS);
|
1888 |
mathias |
113 |
$widget['donnees']['url_ws_upload'] = sprintf($this->config['chemins']['baseURLServicesCelTpl'], self::WS_UPLOAD);
|
1536 |
jpm |
114 |
$widget['donnees']['url_ws_annuaire'] = sprintf($this->config['chemins']['baseURLServicesAnnuaireTpl'], 'utilisateur/identite-par-courriel/');
|
2082 |
mathias |
115 |
$widget['donnees']['url_remarques'] = $this->config['chemins']['widgetRemarquesUrl'];
|
1526 |
jpm |
116 |
|
1516 |
aurelien |
117 |
$widget['donnees']['logo'] = isset($_GET['logo']) ? $_GET['logo'] : 'defaut';
|
2408 |
jpm |
118 |
$widget['donnees']['titre'] = $this->getTitrePage();
|
1526 |
jpm |
119 |
|
2497 |
aurelien |
120 |
$widget['donnees']['referentiel_impose'] = $referentiel_impose;
|
|
|
121 |
$widget['donnees']['espece_imposee'] = false;
|
|
|
122 |
$widget['donnees']['nn_espece_defaut'] = '';
|
|
|
123 |
$widget['donnees']['nom_sci_espece_defaut'] = '';
|
|
|
124 |
$widget['donnees']['infos_espece'] = '{}';
|
|
|
125 |
|
2406 |
jpm |
126 |
$projetsAutorises = $this->transformerEnTableau($this->config['projets']['autorises']);
|
1526 |
jpm |
127 |
|
2497 |
aurelien |
128 |
$urlWsNsTpl = $this->config['chemins']['baseURLServicesEfloreTpl'];
|
|
|
129 |
$urlWsNs = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, $this->ns_referentiel, self::WS_NOM);
|
|
|
130 |
$urlWsNsSansRef = sprintf($urlWsNsTpl, self::EFLORE_API_VERSION, '{referentiel}', self::WS_NOM);
|
|
|
131 |
$widget['donnees']['url_ws_autocompletion_ns'] = $urlWsNs;
|
|
|
132 |
$widget['donnees']['url_ws_autocompletion_ns_tpl'] = $urlWsNsSansRef;
|
|
|
133 |
$widget['donnees']['ns_referentiel'] = $this->ns_referentiel;
|
|
|
134 |
|
|
|
135 |
if ($this->especeEstImposee()) {
|
|
|
136 |
$nnEspeceImposee = $this->getNnEspeceImposee();
|
|
|
137 |
$nom = $this->executerChargementInfosTaxon($nnEspeceImposee);
|
|
|
138 |
$widget['donnees']['espece_imposee'] = true;
|
|
|
139 |
$widget['donnees']['nn_espece_defaut'] = $nnEspeceImposee;
|
|
|
140 |
$widget['donnees']['nom_sci_espece_defaut'] = $nom['nom_sci'];
|
|
|
141 |
$widget['donnees']['infos_espece'] = $this->array2js($nom, true);
|
1536 |
jpm |
142 |
}
|
2406 |
jpm |
143 |
|
|
|
144 |
$projetsAListeDeNoms = $this->transformerEnTableau($this->config['projets']['liste_noms']);
|
|
|
145 |
if (in_array($this->projet, $projetsAListeDeNoms)) {
|
|
|
146 |
$projetsAListeDeNomsSciEtVerna = $this->transformerEnTableau($this->config['projets']['liste_noms_sci_et_verna']);
|
|
|
147 |
if (in_array($this->projet, $projetsAListeDeNomsSciEtVerna)) {
|
1613 |
jpm |
148 |
$widget['donnees']['taxons'] = $this->recupererListeNoms();
|
|
|
149 |
} else {
|
|
|
150 |
$widget['donnees']['taxons'] = $this->recupererListeNomsSci();
|
2328 |
jpm |
151 |
}
|
2406 |
jpm |
152 |
}
|
|
|
153 |
|
|
|
154 |
// Chargement de la liste des milieux issues du fichier .ini du projet
|
|
|
155 |
$projetsAListeDeMilieux = $this->transformerEnTableau($this->config['projets']['liste_milieux']);
|
|
|
156 |
if (in_array($this->projet, $projetsAListeDeMilieux)) {
|
1345 |
aurelien |
157 |
$widget['donnees']['milieux'] = $this->parserMilieux();
|
719 |
jpm |
158 |
}
|
2406 |
jpm |
159 |
|
|
|
160 |
return $widget;
|
719 |
jpm |
161 |
}
|
1526 |
jpm |
162 |
|
2408 |
jpm |
163 |
private function getTitrePage() {
|
|
|
164 |
$titre = 'defaut';
|
|
|
165 |
if (isset($this->configProjet['titre_page'])) {
|
|
|
166 |
$titre = $this->configProjet['titre_page'];
|
|
|
167 |
}
|
|
|
168 |
if (isset($this->configMission['titre_page'])) {
|
|
|
169 |
$titre = $this->configMission['titre_page'];
|
|
|
170 |
}
|
|
|
171 |
if (isset($_GET['titre'])) {
|
|
|
172 |
$titre = $_GET['titre'];
|
|
|
173 |
}
|
|
|
174 |
if ($titre === 0) {
|
|
|
175 |
$titre = '';
|
|
|
176 |
}
|
|
|
177 |
return $titre;
|
1475 |
aurelien |
178 |
}
|
1050 |
jpm |
179 |
|
2328 |
jpm |
180 |
public function executerTaxons() {
|
|
|
181 |
$widget['squelette'] = $this->projet.'_taxons';
|
|
|
182 |
$widget['squelette_ext'] = '.tpl.js';
|
1613 |
jpm |
183 |
$widget['donnees'] = array();
|
1629 |
jpm |
184 |
$nomsAAfficher = $this->recupererListeNomsSci();
|
|
|
185 |
$taxons_tries = array();
|
1691 |
raphael |
186 |
foreach ($nomsAAfficher as $taxon) {
|
1629 |
jpm |
187 |
$taxons_tries[$taxon['num_nom_sel']] = $taxon;
|
2328 |
jpm |
188 |
}
|
|
|
189 |
$widget['donnees']['taxons'] = json_encode($taxons_tries);
|
|
|
190 |
return $widget;
|
|
|
191 |
}
|
1613 |
jpm |
192 |
|
|
|
193 |
private function recupererListeNomsSci() {
|
|
|
194 |
$taxons = $this->recupererListeTaxon();
|
|
|
195 |
if (is_array($taxons)) {
|
|
|
196 |
$taxons = self::trierTableauMd($taxons, array('nom_fr' => SORT_ASC));
|
|
|
197 |
}
|
1629 |
jpm |
198 |
return $taxons;
|
1613 |
jpm |
199 |
}
|
|
|
200 |
|
|
|
201 |
private function recupererListeNoms() {
|
|
|
202 |
$taxons = $this->recupererListeTaxon();
|
|
|
203 |
$nomsAAfficher = array();
|
|
|
204 |
$nomsSpeciaux = array();
|
|
|
205 |
if (is_array($taxons)) {
|
|
|
206 |
foreach ($taxons as $taxon) {
|
|
|
207 |
$nomSciTitle = $taxon['nom_ret'].
|
|
|
208 |
($taxon['nom_fr'] != '' ? ' - '.$taxon['nom_fr'] : '' ).
|
|
|
209 |
($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
|
|
|
210 |
$nomFrTitle = $taxon['nom_sel'].
|
|
|
211 |
($taxon['nom_ret'] != $taxon['nom_sel']? ' - '.$taxon['nom_ret'] : '' ).
|
|
|
212 |
($taxon['nom_fr_autre'] != '' ? ' - '.$taxon['nom_fr_autre'] : '' );
|
|
|
213 |
|
|
|
214 |
if ($taxon['groupe'] == 'special') {
|
|
|
215 |
$nomsSpeciaux[] = array(
|
|
|
216 |
'num_nom' => $taxon['num_nom_sel'],
|
|
|
217 |
'nom_a_afficher' => $taxon['nom_fr'],
|
|
|
218 |
'nom_a_sauver' => $taxon['nom_sel'],
|
|
|
219 |
'nom_title' => $nomSciTitle,
|
|
|
220 |
'nom_type' => 'nom-special');
|
|
|
221 |
} else {
|
|
|
222 |
$nomsAAfficher[] = array(
|
|
|
223 |
'num_nom' => $taxon['num_nom_sel'],
|
|
|
224 |
'nom_a_afficher' => $taxon['nom_sel'],
|
|
|
225 |
'nom_a_sauver' => $taxon['nom_sel'],
|
|
|
226 |
'nom_title' => $nomSciTitle,
|
|
|
227 |
'nom_type' => 'nom-sci');
|
|
|
228 |
$nomsAAfficher[] = array(
|
|
|
229 |
'num_nom' => $taxon['num_nom_sel'],
|
|
|
230 |
'nom_a_afficher' => $taxon['nom_fr'],
|
|
|
231 |
'nom_a_sauver' => $taxon['nom_fr'],
|
|
|
232 |
'nom_title' => $nomFrTitle,
|
|
|
233 |
'nom_type' => 'nom-fr');
|
|
|
234 |
}
|
|
|
235 |
}
|
|
|
236 |
$nomsAAfficher = self::trierTableauMd($nomsAAfficher, array('nom_a_afficher' => SORT_ASC));
|
|
|
237 |
$nomsSpeciaux = self::trierTableauMd($nomsSpeciaux, array('nom_a_afficher' => SORT_ASC));
|
|
|
238 |
}
|
|
|
239 |
return array('speciaux' => $nomsSpeciaux, 'sci-et-fr' => $nomsAAfficher);
|
|
|
240 |
}
|
2328 |
jpm |
241 |
|
|
|
242 |
private function recupererListeTaxon() {
|
|
|
243 |
$taxons = null;
|
|
|
244 |
$fichier_tsv = dirname(__FILE__).self::DS.'configurations'.self::DS.$this->projet.'_taxons.tsv';
|
|
|
245 |
if (file_exists($fichier_tsv) && is_readable($fichier_tsv)) {
|
712 |
jpm |
246 |
$taxons = $this->decomposerFichierTsv($fichier_tsv);
|
2328 |
jpm |
247 |
} else {
|
|
|
248 |
$this->debug[] = "Impossible d'ouvrir le fichier '$fichier_tsv'.";
|
|
|
249 |
}
|
|
|
250 |
return $taxons;
|
712 |
jpm |
251 |
}
|
1050 |
jpm |
252 |
|
2328 |
jpm |
253 |
private function decomposerFichierTsv($fichier, $delimiter = "\t"){
|
|
|
254 |
$header = null;
|
|
|
255 |
$data = array();
|
|
|
256 |
if (($handle = fopen($fichier, 'r')) !== FALSE) {
|
|
|
257 |
while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
|
|
|
258 |
if (!$header) {
|
|
|
259 |
$header = $row;
|
|
|
260 |
} else {
|
|
|
261 |
$data[] = array_combine($header, $row);
|
|
|
262 |
}
|
|
|
263 |
}
|
|
|
264 |
fclose($handle);
|
|
|
265 |
}
|
|
|
266 |
return $data;
|
|
|
267 |
}
|
|
|
268 |
|
1345 |
aurelien |
269 |
private function parserMilieux() {
|
1050 |
jpm |
270 |
$infosMilieux = array();
|
1536 |
jpm |
271 |
if (isset($this->configProjet['milieux'])) {
|
|
|
272 |
$milieux = explode('|', $this->configProjet['milieux']);
|
|
|
273 |
foreach ($milieux as $milieu) {
|
2328 |
jpm |
274 |
$milieu = trim($milieu);
|
1536 |
jpm |
275 |
$details = explode(';', $milieu);
|
|
|
276 |
if (isset($details[1])) {
|
|
|
277 |
$infosMilieux[$details[0]] = $details[1];
|
|
|
278 |
} else {
|
|
|
279 |
$infosMilieux[$details[0]] = '';
|
|
|
280 |
}
|
1050 |
jpm |
281 |
}
|
1536 |
jpm |
282 |
ksort($infosMilieux);
|
1050 |
jpm |
283 |
}
|
|
|
284 |
return $infosMilieux;
|
|
|
285 |
}
|
1526 |
jpm |
286 |
|
1418 |
aurelien |
287 |
private function especeEstImposee() {
|
2328 |
jpm |
288 |
return (isset($_GET['num_nom']) && $_GET['num_nom'] != ''
|
2408 |
jpm |
289 |
|| isset($this->configProjet['sp_imposee']) || isset($this->configMission['sp_imposee']));
|
1418 |
aurelien |
290 |
}
|
1526 |
jpm |
291 |
|
2328 |
jpm |
292 |
private function getNnEspeceImposee() {
|
|
|
293 |
$nn = null;
|
|
|
294 |
if (isset($_GET['num_nom']) && is_numeric($_GET['num_nom'])) {
|
|
|
295 |
$nn = $_GET['num_nom'];
|
|
|
296 |
} else if (isset($this->configProjet['sp_imposee'])) {
|
|
|
297 |
$nn = $this->configProjet['sp_imposee'];
|
2408 |
jpm |
298 |
} else if (isset($this->configMission['sp_imposee'])) {
|
|
|
299 |
$nn = $this->configMission['sp_imposee'];
|
2328 |
jpm |
300 |
}
|
|
|
301 |
return $nn;
|
|
|
302 |
}
|
|
|
303 |
|
1418 |
aurelien |
304 |
private function executerChargementInfosTaxon($num_nom) {
|
2408 |
jpm |
305 |
$url_service_infos = sprintf($this->config['chemins']['infosTaxonUrl'], $this->ns_referentiel, $num_nom);
|
1418 |
aurelien |
306 |
$infos = json_decode(file_get_contents($url_service_infos));
|
1909 |
raphael |
307 |
// trop de champs injectés dans les infos espèces peut
|
|
|
308 |
// faire planter javascript
|
1916 |
jpm |
309 |
$champs_a_garder = array('id', 'nom_sci','nom_sci_complet',
|
2367 |
jpm |
310 |
'famille','nom_retenu.id', 'nom_retenu.libelle', 'num_taxonomique');
|
1419 |
aurelien |
311 |
$resultat = array();
|
1539 |
jpm |
312 |
if (isset($infos) && !empty($infos)) {
|
1419 |
aurelien |
313 |
$infos = (array)$infos;
|
2367 |
jpm |
314 |
if (isset($infos['nom_sci']) && $infos['nom_sci'] != '') {
|
1909 |
raphael |
315 |
$resultat = array_intersect_key($infos, array_flip($champs_a_garder));
|
|
|
316 |
$resultat['retenu'] = ($infos['id'] == $infos['nom_retenu.id']) ? "true" : "false";
|
1916 |
jpm |
317 |
}
|
1419 |
aurelien |
318 |
}
|
1418 |
aurelien |
319 |
return $resultat;
|
|
|
320 |
}
|
1050 |
jpm |
321 |
|
1526 |
jpm |
322 |
private function array2js($array,$show_keys) {
|
1536 |
jpm |
323 |
$tableauJs = '{}';
|
|
|
324 |
if (!empty($array)) {
|
|
|
325 |
$total = count($array) - 1;
|
|
|
326 |
$i = 0;
|
|
|
327 |
$dimensions = array();
|
|
|
328 |
foreach ($array as $key => $value) {
|
|
|
329 |
if (is_array($value)) {
|
|
|
330 |
$dimensions[$i] = array2js($value,$show_keys);
|
|
|
331 |
if ($show_keys) {
|
|
|
332 |
$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
333 |
}
|
|
|
334 |
} else {
|
|
|
335 |
$dimensions[$i] = '"'.addslashes($value).'"';
|
|
|
336 |
if ($show_keys) {
|
|
|
337 |
$dimensions[$i] = '"'.$key.'":'.$dimensions[$i];
|
|
|
338 |
}
|
1526 |
jpm |
339 |
}
|
1536 |
jpm |
340 |
if ($i == 0) {
|
|
|
341 |
$dimensions[$i] = '{'.$dimensions[$i];
|
1526 |
jpm |
342 |
}
|
1536 |
jpm |
343 |
if ($i == $total) {
|
|
|
344 |
$dimensions[$i].= '}';
|
|
|
345 |
}
|
|
|
346 |
$i++;
|
1526 |
jpm |
347 |
}
|
1536 |
jpm |
348 |
$tableauJs = implode(',', $dimensions);
|
1526 |
jpm |
349 |
}
|
1536 |
jpm |
350 |
return $tableauJs;
|
1526 |
jpm |
351 |
}
|
2360 |
jpm |
352 |
}
|