index.ctp
20.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
<?php
use Cake\I18n\Time;
use Cake\I18n\Date;
// (EP 21/5/19)
// --- Elements set by Controller for this view ---
/*TODO: $materiels doit etre enrichi avec des nouveaux attributs tels que (pour chaque materiel de la liste) :
- CAN_EDIT
- CAN_DELETE
- CAN_VALIDATE
- CAN_TBA
- CAN_ARCHIVE
*/
$materiels = $materiels;
$configuration = $configuration;
// Uniquement quand un statut est sélectionné (pour filtrer)
if (isset($SELECTED_STATUS)) $SELECTED_STATUS = $SELECTED_STATUS;
// TODO: yena plein d'autres
// ...
// - Constants :
// - User status:
$role = $role;
$username = $username;
$priviledgedUser = $priviledgedUser;
$USER_IS_UTILISATEUR = $USER_IS_UTILISATEUR;
$USER_IS_RESPONSABLE = $USER_IS_RESPONSABLE;
$USER_IS_RESPONSABLE_OR_MORE = $USER_IS_RESPONSABLE_OR_MORE;
$USER_IS_ADMIN = $USER_IS_ADMIN;
$USER_IS_ADMIN_OR_MORE = $USER_IS_ADMIN_OR_MORE;
$USER_IS_ADMINPLUS = $USER_IS_ADMINPLUS;
$USER_IS_ADMINPLUS_OR_MORE = $USER_IS_ADMINPLUS_OR_MORE;
$USER_IS_SUPERADMIN = $USER_IS_SUPERADMIN;
// (EP) TODO: Vraiment utile ??? A virer je pense
$PROFILE_USER = $PROFILE_USER;
$PROFILE_ADMIN = $PROFILE_ADMIN;
$PROFILE_RESPONSABLE = $PROFILE_RESPONSABLE;
$PROFILE_ADMINPLUS = $PROFILE_ADMINPLUS;
$PROFILE_SUPERADMIN = $PROFILE_SUPERADMIN;
$allProfiles = $allProfiles;
// - Materiel status:
$idGmNa = $idGmNa;
$idGtNa = $idGtNa;
// - Fonctions :
$displayElement = $displayElement;
$dateProchainControleVerif = $dateProchainControleVerif;
$echoActionButton = $echoActionButton;
?>
<div class="materiels index col-lg-12 col-md-12 col-sm-12">
<?php echo '<h2><i class="icon-list"></i> Liste des matériels ('.$nbMateriels.')</h2>'; ?>
<div class="actions" style="width: 100%; float: none; padding: 0 0;">
<?php
// @TODO : get from Configurations
$METRO=false;
/*echo '<p>';
echo $this->Html->link('<i class="icon-plus"></i> Nouveau Matériel', [
'action' => 'add'
], [
'title' => 'Ajouter un matériel',
'escape' => false
]);
echo '</p>';*/
if ($USER_IS_ADMIN_OR_MORE) {
echo '<p>';
echo "Afficher les matériels : ";
echo '</br>';
echo '</br>';
$b_all = $b_cre = $b_val = $b_toarc = $b_arc = '';
$SELECTED = '<i class="icon-ok"></i>';
if (isset($SELECTED_STATUS)) {
if ($SELECTED_STATUS == 'CREATED')
$b_cre = $SELECTED;
else if ($SELECTED_STATUS == 'VALIDATED')
$b_val = $SELECTED;
else if ($SELECTED_STATUS == 'TOBEARCHIVED')
$b_toarc = $SELECTED;
else if ($SELECTED_STATUS == 'ARCHIVED')
$b_arc = $SELECTED;
} else
$b_all = $SELECTED;
// Affichage des boutons en haut de la page
echo $this->Html->link($b_all . ' Tous', [
'action' => 'index'
], [
'title' => 'Tous',
'style' => 'margin-right: 5px',
'escape' => false
]);
echo $this->Html->link($b_cre . ' A valider', [
'action' => 'index',
'CREATED'
], [
'title' => 'Liste des matériels créés',
'style' => 'margin-right: 5px',
'escape' => false
]);
echo $this->Html->link($b_val . ' Validés', [
'action' => 'index',
'VALIDATED'
], [
'title' => 'Liste des materiels que l\'on peut archiver',
'style' => 'margin-right: 5px',
'escape' => false
]);
echo $this->Html->link($b_toarc . ' A sortir', [
'action' => 'index',
'TOBEARCHIVED'
], [
'title' => 'A sortir de l\'inventaire',
'style' => 'margin-right: 5px',
'escape' => false
]);
echo $this->Html->link($b_arc . ' Archivés', [
'action' => 'index',
'ARCHIVED'
], [
'title' => 'A sortir de l\'inventaire',
'style' => 'margin-right: 0px',
'escape' => false
]);
echo '</p>';
// ACTIONS : buttons "Tout selectionner", "Tout decocher"
// - show only with "A valider" and "A sortir"
if (isset($SELECTED_STATUS) && $nbMateriels != 0) {
echo $this->Html->link('<i class="icon-check"></i> Tout cocher', '#all', [
'onclick' => 'selectAll()',
'title' => 'Sélectionner tout les matériels',
'style' => ': 400px; margin-right: 50px',
'escape' => false
]);
echo $this->Html->link('<i class="icon-check-empty"></i> Tout décocher', '#none', [
'onclick' => 'selectNone()',
'title' => 'Sélectionner aucun matériel',
'style' => 'margin-right: 50px',
'escape' => false
]);
}
}
?>
</div>
<div class="col-lg-2 col-md-3 col-sm-4">
<?php
echo $this->Form->create('materiels', [
'url' => '/materiels/execActions?page=' . $this->request->getQuery('page')
]);
// echo $this->Form->create('materiels', ['url' => '/materiels/execActions?page=index']);
//echo $this->Form->control('aff_par_defaut', [
echo $this->Form->control('aff_par_defaut', [
'label' => 'Afficher',
'options' => [
'20' => 20,
'30' => 30,
'50' => 50,
'100' => 100,
'150' => 150,
'200' => 200
]
]);
?>
</div>
<?php
if ($nbMateriels > 0) {
// $form2 = $this->Form;
// /echo $this->Form->create('materiels', ['url' => '/materiels/execActions']);
if (isset($SELECTED_STATUS))
echo $this->Form->hidden('what', [
'value' => $SELECTED_STATUS
]);
?>
<table style="border-collapse: separate; border-spacing: 0;">
<thead>
<tr>
<?php if (isset($SELECTED_STATUS)) { echo '<th></th>'; }?>
<th class="actions"><?= __('') ?></th>
<th><?= $this->Paginator->sort('designation','Désignation') ?></th>
<th><?= $this->Paginator->sort('numero_laboratoire', 'N° interne (labo)') ?></th>
<th><?= $this->paginator->sort('hors_service', ' ') ?></th>
<th><?= $this->Paginator->sort('categorie_id', 'Catégorie') ?></th>
<th><?= $this->Paginator->sort('organisme_id', 'Org.') ?></th>
<th><?= $this->Paginator->sort('numero_inventaire_organisme', 'N° Invent. Org.') ?></th>
<th><?= $this->Paginator->sort('nom_responsable', 'Nom de l\'utilisateur') ?></th>
<th><?= $this->Paginator->sort('status', 'Statut') ?></th>
<th><?= $this->Paginator->sort('date_acquisition', 'Date Achat') ?></th>
<?= "<th>".$this->Paginator->sort('etiquette', 'Et')."</th>" ?>
<?php if ($METRO) echo "<th>".$this->Paginator->sort('metrologie', 'Metro')."</th>" ?>
</tr>
</thead>
<tbody>
<?php
// Pour changer la couleur du nom du matos si la garantie est passée
$time = Time::now(); // On récupère la date et l'heure actuelles
$today = new date("$time->year-$time->month-$time->day"); // On extrait la date pour la vérification de fin de garantie
$today = $today->format('Ydm'); // On formatte la date initialement en 31-12-2000 (par exemple) en un format qui pourra etre comparé : 20001231
// BOUCLE SUR CHAQUE MATERIEL, ligne par ligne
foreach ($materiels as $materiel) :
// TODO: Ces variables doivent etre définies par le controleur et passées à la vue (sous forme d'un tableau contenant ces droits pour CHAQUE materiel)
$IS_CREATED = ($materiel->status == 'CREATED');
$IS_VALIDATED = ($materiel->status == 'VALIDATED');
$IS_TOBEARCHIVED = ($materiel->status == 'TOBEARCHIVED');
$IS_ARCHIVED = ($materiel->status == 'ARCHIVED');
$USER_IS_CREATOR_OR_OWNER = in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]);
$USER_IS_SAME_GROUP_AS_MATERIEL = (
( isset($priviledgedUser->groupes_metier_id) && $priviledgedUser->groupes_metier_id!=$idGmNa && $materiel->groupes_metier_id==$priviledgedUser->groupes_metier_id )
||
( isset($priviledgedUser->groupe_thematique_id) && $priviledgedUser->groupe_thematique_id!=$idGtNa && $materiel->groupes_thematique_id==$priviledgedUser->groupe_thematique_id )
);
$USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL = $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL;
$CONTEXT1 = $USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL;
//$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_UTILISATEUR_AND_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL || $USER_IS_RESPONSABLE_AND_CREATOR_OR_OWNER);
$CAN_EDIT = $IS_CREATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || $USER_IS_RESPONSABLE_AND_SAME_GROUP_AS_MATERIEL);
$CAN_DELETE = $CAN_EDIT;
$CAN_VALIDATE_OR_INVALIDATE = $USER_IS_ADMIN_OR_MORE || ( ($materiel->materiel_administratif == 0) && $USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL );
$CAN_VALIDATE = $IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE;
$CAN_INVALIDATE = !$IS_CREATED && $CAN_VALIDATE_OR_INVALIDATE;
$CAN_TBA = $IS_VALIDATED && ($USER_IS_ADMIN_OR_MORE || $USER_IS_CREATOR_OR_OWNER || ($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL));
$CAN_ARCHIVE = $IS_TOBEARCHIVED && $CAN_VALIDATE_OR_INVALIDATE;
if ($materiel->date_fin_garantie !== NULL) {
$timeFin = new time($materiel->date_fin_garantie);
$dateFin = new date("$timeFin->year-$timeFin->month-$timeFin->day");
$dateFin = $dateFin->format('Ydm');
}
if ($materiel->date_fin_garantie !== NULL)
$styleLien = ($today >= $dateFin) ? 'style="color: #FF0000"' : '';
else
$styleLien = '';
?>
<tr>
<?php
// (1) COLONNE SELECTION (checkbox)
if (isset($SELECTED_STATUS)) {
echo '<td class="smallText">' . $this->Form->checkbox($materiel->id, [
'style' => 'margin: 3px',
'id' => $materiel->id
]) . '</td>';
}
?>
<!-- (2) COLONNE ACTIONS (Edit, Delete, Validate, TBA, Archive) -->
<td class="actions"
style="padding: 6px 0; text-align: left;">
<?php
// 1) EDIT icon
/*
if (
in_array($materiel->status, [
'CREATED',
// (EP 17/5/19) ben non, on peut pas si c'est validé !!!
//'VALIDATED'
])
&&
(
$USER_IS_ADMIN_OR_MORE
||
$USER_IS_CREATOR_OR_OWNER
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
)
)
*/
if ($CAN_EDIT) echo $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $materiel->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]);
// 2) VALIDER/TBA/ARCHIVER icon
/*
if (
$USER_IS_ADMIN
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
) {
*/
//if ($materiel->status=='CREATED' && !$USER_IS_RESPONSABLE) {
if ($CAN_VALIDATE)
echo $this->Html->link('<i class="icon-ok-sign"></i>', [
'action' => 'statusValidated',
$materiel->id
], [
'title' => 'Valider',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => 'Êtes-vous sur de vouloir valider ' . $materiel->designation . ' ?'
]);
//else if (h($materiel->status) == 'VALIDATED') {
if ($CAN_TBA)
echo $this->Html->link('<i class="icon-inbox"></i>', [
'action' => 'statusToBeArchived',
$materiel->id
], [
'title' => 'Demander la sortie de l\'inventaire',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => 'Êtes-vous sur de vouloir faire une demande d\'archive ' . $materiel->designation . ' ?'
]);
//else if ($materiel->status=='TOBEARCHIVED' && !$USER_IS_RESPONSABLE)
if ($CAN_ARCHIVE)
echo $this->Html->link('<i class="icon-inbox"></i>', [
'action' => 'statusArchived',
$materiel->id
], [
'title' => 'Sortir de l\'inventaire',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => 'Êtes-vous sur de vouloir archiver ' . $materiel->designation . ' ?'
]);
// 3) DELETE icon
/*
if (h($materiel->status) == 'CREATED') {
if (
$USER_IS_ADMIN_OR_MORE
||
$USER_IS_CREATOR_OR_OWNER
||
($USER_IS_RESPONSABLE && $USER_IS_SAME_GROUP_AS_MATERIEL)
)
*/
if ($CAN_DELETE)
echo $this->Html->link(__('<i class="icon-trash"></i>'), [
'action' => 'delete',
$materiel->id
], [
'title' => 'Supprimer',
'style' => 'margin: 0 2px',
'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $materiel->designation)
]);
?>
</td>
<!-- (3) LES AUTRES COLONNES (DATA : designation, num labo, hs, categ, ...) -->
<td class="smallText"><?= $materiel->has('designation') ? $this->Html->link($materiel->designation, ['controller' => 'Materiels', 'action' => 'view', $materiel->id],[$styleLien]) : '' ?></td>
<td class="smallText"><?= h($materiel->numero_laboratoire) ?></td>
<td class="smallText" style="color: red"><strong><?= ($materiel->hors_service) ? 'HS' : '' ?></strong></td>
<td class="smallText"><?= $materiel->has('category') ? h($materiel->category->nom) : '' ?></td>
<td class="smallText"><?= $materiel->has('organisme') ? h($materiel->organisme->nom) : '' ?></td>
<td class="smallText"><?= h($materiel->numero_inventaire_organisme) ?></td>
<td class="smallText"><?= h($materiel->nom_responsable) ?></td>
<?php
// (4) COLONNE MATERIEL STATUS : C/V/TBA/A
switch (h($materiel->status)) {
case 'CREATED':
$statut = 'C';
break;
case 'VALIDATED':
$statut = 'V';
break;
case 'TOBEARCHIVED':
$statut = 'TBA';
break;
case 'ARCHIVED':
$statut = 'A';
break;
default:
$statut = '';
break;
}
?>
<td class="smallText"><?= $statut ?></td>
<!--
// (5) COLONNES Date acquisition et Etiquette posée
-->
<td class="smallText"><?= h($materiel->date_acquisition) ?></td>
<td class="smallText"><?= h($materiel->etiquette)=='1' ? 'Y':'N' ?></td>
<!--
// (6) COLONNE METRO o/n
-->
<?php if ($METRO)
echo '<td class="smallText">'. (h($materiel->metrologie)=='1' ? 'Y':'N').'</td>';
?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php
if (isset($SELECTED_STATUS)) {
switch ($SELECTED_STATUS) {
case 'CREATED':
$action = 'Valider les';
break;
case 'VALIDATED':
$action = "Demander l'archivage des";
break;
case 'TOBEARCHIVED':
$action = "Sortir les";
break;
}
if ($SELECTED_STATUS != 'ARCHIVED') {
//if (! ($role == 'Super Administrateur' && $SELECTED_STATUS == 'TOBEARCHIVED')) {
if (! ($USER_IS_SUPERADMIN && $SELECTED_STATUS=='TOBEARCHIVED') ) {
//echo $this->Form->submit($action . ' matériels cochés', [
// 'name' => 'updateSelectedStatus',
// 'id' => 'updateSelectedStatus',
// 'style' => 'margin: 0px'
//]);
echo $this->Form->button($action . ' matériels cochés', [ 'class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'updateSelectedStatus', 'id' => 'updateSelectedStatus', 'style' => 'margin: 0px']);
echo "<br /><br />";
}
}
//echo $this->Form->submit('Exporter la liste des matériels cochés', [
// 'name' => 'export',
// 'id' => 'export',
// 'style' => 'margin: 0px;'
//]);
echo $this->Form->button('Exporter la liste des matériels cochés', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'export', 'id' => 'export', 'style' => 'margin: 0px;' ]);
echo "<br /><br />";
}
if ($USER_IS_ADMIN_OR_MORE || $USER_IS_RESPONSABLE)
//echo $this->Form->submit('Exporter la liste complete', [
// 'name' => 'exportAll',
// 'id' => 'exportAll',
// 'style' => 'margin: 0px;'
//]);
echo $this->Form->button('Exporter la liste complete', ['class'=>'btn btn-outline-success', 'type'=>'submit', 'name' => 'exportAll', 'id' => 'exportAll', 'style' => 'margin: 0px;']);
echo $this->element('pagination_with_first_and_last');
$this->Form->end();
}
else {
echo 'Aucun matériel';
}
?>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
<php
echo $this->element('menu_index', [
'pluralHumanName' => 'Matériels',
'singularHumanName' => 'Matériel'
])?>
</div>
-->
<script type="text/javascript">
// Pour changer l'url lorsque le nombre d'éléments souhaités est modifié
$(document).ready(function () {
$("#aff-par-defaut").bind("change", function (event) {
var nbr=$("#aff-par-defaut :selected").val();
var urlDeBase = window.location.href.split("?");
var urlDecoupee = window.location.search.split("&"), i, j; // On sépare la chaine des paramètres en fonction du &
var urlDecoupeeBis = new Array();
var param = 0;
var bool = false;
for(i=0; i<urlDecoupee.length; ++i) {
urlDecoupeeBis[i] = urlDecoupee[i].split("="); // On sépare les parametres de leurs valeurs
for(j=0; j<urlDecoupeeBis[i].length; ++j){
if(urlDecoupeeBis[i][0] == "aff" || urlDecoupeeBis[i][0] == "?aff") {
bool = true;
param = i; // Si le parametre "aff" est trouvé, on le récupère
break;
}
}
}
if(bool) { // Si le parametre recherche a ete trouve, ...
urlDecoupeeBis[param][1] = nbr; //urlDecoupeeBis[i][0] c'est le nom du parametre, et urlDecoupeeBis[i][1] c'est la valeur associée
var url = "";
for(i=0; i<urlDecoupee.length; ++i) { //... on reconstruit une url propre ...
if(/^\?[a-zA-A0-9]*/.test(urlDecoupeeBis[0][0])) {
if(i!=0) url += "&";
// Sauf pour le 1er parametre, qui lui commence par un "?"
} else url += "&";
url += urlDecoupeeBis[i][0]+"="+urlDecoupeeBis[i][1];
// On reforme les parametres "&nom=valeur" en les concatenant
}
window.location.href = urlDeBase[0]+url; // ... et on fait la redirection
} else if(urlDecoupee[0]=="") window.location.href = window.location.href + '?aff=' + nbr; // Sinon on joute juste le parametre en fin d'url
else window.location.href = window.location.href + '&aff=' + nbr;
});
});
// Pour lire l'url et actualiser l'option sélectionnée
$(document).ready(function () {
var affichage = parseInt($_GET('aff'));
switch(affichage) {
case 20 :
document.getElementById('aff-par-defaut').selectedIndex = 0;
break;
case 30 :
document.getElementById('aff-par-defaut').selectedIndex = 1;
break;
case 50 :
document.getElementById('aff-par-defaut').selectedIndex = 2;
break;
case 100 :
document.getElementById('aff-par-defaut').selectedIndex = 3;
break;
case 150 :
document.getElementById('aff-par-defaut').selectedIndex = 4;
break;
case 200 :
document.getElementById('aff-par-defaut').selectedIndex = 5;
break;
default : // Par défaut, lorsque le parametre "aff" n'existe pas, au premier affichage
$("#aff-par-defaut").val(<?php echo $configuration->aff_par_defaut ?>);
// On récupère la valeur dans la BD directement, mais en PHP, faut pas déconner
break;
}
});
// La fonction suivante permet de recuperer les parametres d’une URL
function $_GET(param) {
var vars = {};
window.location.href.replace( location.hash, '' ).replace(
/[?&]+([^=&]+)=?([^&]*)?/gi, // regexp
function( m, key, value ) { // callback
vars[key] = value !== undefined ? value : '';
}
);
if ( param ) {
return vars[param] ? vars[param] : null;
}
return vars;
}
</script>