edit.ctp
14.9 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
<?php
// Variables passées par le controleur
$disp_ldap = $disp_ldap;
// Ces sections sont affichées ou cachées en cliquant dessus
// Ce comportement est géré par le javascript webroot/js/script.js
// qui contient une fonction pour chaque section (avec le nom "t_<nom de la section>")
// Ex pour la section "emprunts" : $('#t_emprunts').click(function()...
/*
function $this->MyHelper->echoSectionStart($title, $section) {
echo '<h3 id="t_'.$section.'" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_'.$section.'"></i>';
echo '<span style="text-decoration: underline;">'.$title.'</span>';
echo '</h3>';
echo '<div id="'.$section.'" style="margin-bottom: 20px;">';
}
function $this->MyHelper->echoSectionStart($title) {
//echo '<h3 id="t_'.$section.'" style="cursor: pointer;">';
//echo "<h3 id='t_$section' class='toggle' style='cursor: pointer;'>";
echo "<h3 id='t_$title' class='toggle' style='cursor: pointer;'>";
//echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_'.$section.'"></i>';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_'.$title.'"></i>';
echo '<span style="text-decoration: underline;">'.$title.'</span>';
echo '</h3>';
//echo '<div id="'.$section.'" style="margin-bottom: 20px;">';
echo '<div id="'.$title.'" style="margin-bottom: 20px;">';
/S
echo '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
S/
}
function $this->MyHelper->echoSectionStop() {
//echo '</table>';
echo '</div>';
}
*/
?>
<div class="configurations form">
<?=$this->Form->create($configurationObj)?>
<h2>
<i class="icon-edit"></i> Editer la configuration
</h2>
<fieldset>
<?php
/* SECTION MODES */
//$this->MyHelper->echoSectionStart("Modes", "informations");
$this->MyHelper->echoSectionStart("Modes");
/*
echo '<h3 id="t_informations" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_informations"></i>';
echo '<span style="text-decoration: underline;">Modes</span>';
echo '</h3>';
echo '<div id="informations" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('mode_install');
//echo $this->Form->control('mode_debug');
echo $this->Form->control('mode_debug', [
'label' => 'Mode DEBUG (via la table "configurations")'
]);
$this->MyHelper->echoSectionStop();
/* SECTION LABORATOIRE */
//$this->MyHelper->echoSectionStart("Laboratoire", "informations_admin");
$this->MyHelper->echoSectionStart("Laboratoire");
/*
echo '<h3 id="t_informations_admin" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_informations_admin"></i>';
echo '<span style="text-decoration: underline;">Laboratoire</span>';
echo '</h3>';
echo '<div id="informations_admin" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('labName', [
'label' => 'Nom complet du Labo'
]);
echo $this->Form->control('labNameShort', [
'label' => 'Nom court du Labo (10 caractères max)'
]);
echo $this->Form->control('labPresent', [
// Label avec du code de formatage html
'label' => 'Article devant nom du Labo ("inventaire <u>DU</u> LATMOS" ou "inventaire <u>DE L\'</u> IRAP")',
/*
'label' => [
//'Article devant nom du Labo : "inventaire <u>DU</u> LATMOS" ou bien "inventaire "DE L\'" IRAP"',
"Article devant nom du <u>Labo</u>",
//'escape' => false
],
*/
"escape" => false
]);
echo $this->Form->control('labUmr', [
'label' => 'UMR du Labo'
]);
$this->MyHelper->echoSectionStop();
/* SECTION DIVERS */
//$this->MyHelper->echoSectionStart("Divers", "suivis");
$this->MyHelper->echoSectionStart("Divers");
/*
echo '<h3 id="t_suivis" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>';
echo '<span style="text-decoration: underline;">Divers</span>';
echo '</h3>';
echo '<div id="suivis" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('pdf_engine', [
'options' => [
'FPDF' => "FPDF",
'DOMPDF' => "DOMPDF",
],
'label' => 'Librairie pdf'
]);
echo $this->Form->control('procedure_sur_accueil', [
'label' => 'Afficher la procédure à suivre sur l\'écran d\'accueil'
]);
echo $this->Form->control('hasPrinter', [
'label' => 'Imprimante disponible'
]);
echo $this->Form->control('label_format_num', [
'options' => [
'1' => '1 - Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO LabelManager420P ou MobileLabeler, pour logiciel DCD 1.3.x sur Windows 10)',
'2' => '2 - Etiquette 19mm, texte sur 2 lignes avec QrCode (ruban, Dymo LabelManager PCII, CRAL)',
'3' => '3 - (idem 1 mais avec logiciel DLS au lieu de DCD) Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO LabelManager420P ou MobileLabeler, pour logiciel DLS 8.7.x sur Mac ou Win)',
'4' => '4 - Etiquette 12mm, texte sur 2 lignes avec LOGO laboratoire (ruban, DYMO LabelManager PnP, logiciel DLS Mac/Win)',
'5' => '5 - Etiquette 12mm, texte sur 2 lignes avec QrCode (ruban, DYMO LabelManager PnP, logiciel DLS Mac/Win, mais QrCode trop petit pour être identifiable)',
/*
'1' => '1 - Etiquette 12mm, texte sur 2 lignes avec LOGO laboratoire (ruban, DYMO LabelManager PnP)',
'2' => '2 - Etiquette 19mm, texte sur 2 lignes avec QrCode (ruban, Dymo LabelManager PCII, CRAL)',
'3' => '3 - Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO LabelManager420P ou MobileLabeler, pour logiciel DLS 8.7.x sur Mac ou Win)',
'4' => '4 - Etiquette 12mm, texte sur 2 lignes avec QrCode (ruban, DYMO LabelManager PnP, IRAP)',
'5' => '5 - Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO LabelManager420P ou MobileLabeler, pour logiciel DCD 1.3.x sur Windows 10)',
*/
//'6' => '6 - Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO LabelManager420P ou MobileLabeler avec DLS, test)',
/*
'6' => 6,
'7' => 7,
'8' => 8,
'9' => 9,
'10' => 10,
*/
],
'label' => 'Numéro Format Etiquette'
]);
echo $this->Form->control('numero_labo_sans_annee', [
'label' => 'Numero labo sans année'
]);
echo "Si vous cochez la case ci-dessous, assurez-vous que la case au-dessus soit cochée aussi.";
echo $this->Form->control('date_commande_facultative', [
'label' => 'Champ date commande facultatif'
]);
echo $this->Form->control('prix_inventaire_administratif', [
'label' => 'Seuil (prix) Matériel administratif'
]);
echo $this->Form->control('taille_max_doc', [
'label' => 'Taille max documents (octets)'
]);
echo $this->Form->control('nom_groupe_thematique', [
'label' => 'Label groupe thématique'
]);
echo $this->Form->control('nom_groupe_metier', [
'label' => 'Label groupe métier'
]);
echo $this->Form->control('metrologie', [
'label' => 'Module métrologie'
]);
$this->MyHelper->echoSectionStop();
/* SECTION EMAILS */
//$this->MyHelper->echoSectionStart("Emails", "emprunts");
$this->MyHelper->echoSectionStart("Emails");
/*
echo '<h3 id="t_emprunts" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_emprunts"></i>';
echo '<span style="text-decoration: underline;">Emails</span>';
echo '</h3>';
echo '<div id="emprunts" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('sender_mail', [
'label' => "Attribut 'sender' (expéditeur)"
]);
echo $this->Form->control('envoi_mail', [
'label' => "Activer l'envoi 'général' des mails"
]);
echo $this->Form->control('envoi_mail_guests', [
'label' => "Activer l'envoi 'spécifique' des mails pour la liste ci-dessous"
]);
// (EP202009) non mais, faudrait arrêter d'être fainénant aussi...
for ($i=1 ; $i<=10; $i++) {
echo $this->Form->control('emailGuest'.$i, [
'label' => "Destinataire $i"
]);
}
/*
echo $this->Form->control('emailGuest1', [
'label' => 'Destinataire 1'
]);
echo $this->Form->control('emailGuest2', [
'label' => 'Mail guest 2'
]);
echo $this->Form->control('emailGuest3', [
'label' => 'Mail guest 3'
]);
echo $this->Form->control('emailGuest4', [
'label' => 'Mail guest 4'
]);
echo $this->Form->control('emailGuest5', [
'label' => 'Mail guest 5'
]);
echo $this->Form->control('emailGuest6', [
'label' => 'Mail guest 6'
]);
echo $this->Form->control('emailGuest7', [
'label' => 'Mail guest 7'
]);
echo $this->Form->control('emailGuest8', [
'label' => 'Mail guest 8'
]);
echo $this->Form->control('emailGuest9', [
'label' => 'Mail guest 9'
]);
echo $this->Form->control('emailGuest10', [
'label' => 'Mail guest 10'
]);
*/
$this->MyHelper->echoSectionStop();
/* SECTION LDAP */
//$this->MyHelper->echoSectionStart("LDAP", "fichiers");
$this->MyHelper->echoSectionStart("LDAP");
/*
echo '<h3 id="t_fichiers" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_fichiers"></i>';
echo '<span style="text-decoration: underline;">LDAP</span>';
echo '</h3>';
echo '<div id="fichiers" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('ldap_used', [
'label' => 'Utilisation du LDAP',
'onchange' => 'display_ldap();'
]);
// start LDAP DIV
echo '<div id="ldap" style="border-top: 1px solid #CCC; border-bottom: 1px solid #CCC; margin-bottom: 0; background: #EEE; ' . $disp_ldap . '">';
echo $this->Form->control('ldap_host', ['label' => 'Host (préfixer par ldaps:// si ldap secured)']);
echo $this->Form->control('ldap_port', ['label' => 'Port du LDAP']);
echo $this->Form->control('ldap_authenticationType', [
//'label' => "Type d'authentification du LDAP (uid ou samaccountname, tout en minuscules)"
'label' => "Nom du champ login (uid ou samaccountname, tout en minuscules)"
]);
echo $this->Form->control('ldap_baseDn', [
'label' => 'Base DN du LDAP'
]);
echo $this->Form->control('ldap_filter', [
'label' => 'Filtre du LDAP'
]);
// start LDAP auth subsection (DIV)
echo $this->Form->control('ldap_authentified', [
//'id' => 'ldap-authentified',
'label' => 'LDAP authentifié (non anonyme)',
//'onchange' => 'display_ldap_auth();'
'onchange' => 'toggle_ldap_auth();'
]);
echo '<div id="ldap_auth" style="border-top: 1px solid #CCC; border-bottom: 1px solid #CCC; margin-bottom: 0; background: #EEE; ' . $disp_ldap . '">';
echo $this->Form->control('ldap_bindDn', [
'label' => 'Bind du LDAP'
]);
echo $this->Form->password('ldap_bindPass', [
'label' => 'Password Bind du LDAP'
]);
echo '</div>';
// end LDAP auth subsection (DIV)
// end LDAP DIV
echo '</div>';
$this->MyHelper->echoSectionStop();
/*
* SECTION OPTIMISATION LISTE UTILISATEURS
*/
$this->MyHelper->echoSectionStart("Optimisation");
/* LDAP optimisation */
echo $this->Form->control('ldap_cached', [
'label' => "Optimisation accès liste utilisateurs (Cache en BD)"
]);
/*
echo $this->Form->control('ldap_cache_last_update', [
'label' => 'Date de dernière mise à jour du cache LDAP'
]);
*/
echo $this->Form->control('ldap_cache_validity_duration', [
'label' => 'Durée validité Cache (mn)'
]);
$this->MyHelper->echoSectionStop();
/* SECTION AFFICHAGE */
$this->MyHelper->echoSectionStart("Affichage");
/*
echo '<h3 id="t_fichiers" style="cursor: pointer;">';
echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_fichiers"></i>';
echo '<span style="text-decoration: underline;">Affichage</span>';
echo '</h3>';
echo '<div id="fichiers" style="margin-bottom: 20px;">';
*/
echo $this->Form->control('aff_par_defaut', [
'options' => [
'20' => 20,
'30' => 30,
'50' => 50,
'100' => 100,
'150' => 150,
'200' => 200
],
'label' => 'Nombre de materiel affichés par défaut'
]);
$this->MyHelper->echoSectionStop();
?>
</fieldset>
<?= $this->Form->button('Valider', ['class'=>'btn btn-outline-success', 'type'=>'submit'])?>
<?=$this->Form->end()?>
</div>
<!--
<div class="actions">
<php
echo $this->element('menu');
echo $this->element('menu_form', [
'pluralHumanName' => 'Configuration générale'
]);
?>
</div>
-->
<script type="text/javascript">
$(document).ready(function(){
// (EP) Bugfix: uniquement nécessaire dans un seul cas => pour que la section ldap-authentified soit fermée à l'ouverture de cette page si l'option n'est pas cochée !!!
toggle_ldap_auth();
$( ".form" ).submit(function( event ) {
if($("#date-commande-facultative").is(':checked') && !$("#numero-labo-sans-annee").is(':checked')){
alert("La case \"Numéro labo sans année\" dans la catégorie \"Divers\" doit être cochée");
//$("#numero-labo-sans-annee").attr('required',true);
event.preventDefault();
}
});
});
toggle_all_sections();
</script>