edit.ctp
7.38 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
<div class="configurations form">
<?=$this->Form->create($configurationObj)?>
<h2>
<i class="icon-edit"></i> Editer la configuration
</h2>
<fieldset>
<?php
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->input('mode_install');
//echo $this->Form->input('mode_debug');
echo $this->Form->input('mode_debug', [
'label' => 'Mode DEBUG (via la table "configurations")'
]);
echo '</div>';
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->input('labName', [
'label' => 'Nom complet du Labo'
]);
echo $this->Form->input('labNameShort', [
'label' => 'Nom court du Labo (10 caractères max)'
]);
echo $this->Form->input('labPresent', [
'label' => 'Liaison présentation nom du Labo ("inventaire _de l\'_ IRAP" ou bien "inventaire _du_ LATMOS")'
]);
echo $this->Form->input('labUmr', [
'label' => 'UMR du Labo'
]);
echo '</div>';
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->input('procedure_sur_accueil', [
'label' => 'Afficher la procédure à suivre sur l\'écran d\'accueil'
]);
echo $this->Form->input('hasPrinter', [
'label' => 'Imprimante disponible'
]);
echo $this->Form->input('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->input('date_commande_facultative', [
'label' => 'Champ date commande facultatif'
]);
echo $this->Form->input('prix_inventaire_administratif', [
'label' => 'Seuil (prix) Matériel administratif'
]);
echo $this->Form->input('taille_max_doc', [
'label' => 'Taille max documents (octets)'
]);
echo $this->Form->input('nom_groupe_thematique', [
'label' => 'Label groupe thématique'
]);
echo $this->Form->input('nom_groupe_metier', [
'label' => 'Label groupe métier'
]);
echo $this->Form->input('metrologie', [
'label' => 'Module métrologie'
]);
echo '</div>';
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->input('envoi_mail', [
'label' => 'Activer l\'envoi des mails général'
]);
echo $this->Form->input('sender_mail', [
'label' => 'Attribut "sender" (mail)'
]);
echo $this->Form->input('envoi_mail_guests', [
'label' => 'Activer l\'envoi des mails pour la liste spécifique ci-dessous'
]);
echo $this->Form->input('emailGuest1', [
'label' => 'Mail guest 1'
]);
echo $this->Form->input('emailGuest2', [
'label' => 'Mail guest 2'
]);
echo $this->Form->input('emailGuest3', [
'label' => 'Mail guest 3'
]);
echo $this->Form->input('emailGuest4', [
'label' => 'Mail guest 4'
]);
echo $this->Form->input('emailGuest5', [
'label' => 'Mail guest 5'
]);
echo $this->Form->input('emailGuest6', [
'label' => 'Mail guest 6'
]);
echo $this->Form->input('emailGuest7', [
'label' => 'Mail guest 7'
]);
echo $this->Form->input('emailGuest8', [
'label' => 'Mail guest 8'
]);
echo $this->Form->input('emailGuest9', [
'label' => 'Mail guest 9'
]);
echo $this->Form->input('emailGuest10', [
'label' => 'Mail guest 10'
]);
echo '</div>';
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->input('use_ldap', [
'label' => 'Utilisation du LDAP',
'onchange' => 'display_ldap();'
]);
echo '<div id="ldap" style="border-top: 1px solid #CCC; border-bottom: 1px solid #CCC; margin-bottom: 0; background: #EEE; ' . $disp . '">';
echo $this->Form->input('host_ldap', [
'label' => 'Host du LDAP'
]);
echo $this->Form->input('port_ldap', [
'label' => 'Port du LDAP'
]);
echo $this->Form->input('authentificationType_ldap', [
'label' => 'Type d\'authentification du LDAP'
]);
echo $this->Form->input('baseDn_ldap', [
'label' => 'Base DN du LDAP'
]);
echo $this->Form->input('filter_ldap', [
'label' => 'Filtre du LDAP'
]);
echo '</div>';
echo '</div>';
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->input('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'
]);
echo '</div>';
?>
</fieldset>
<?=$this->Form->submit(__('Valider'))?>
<?=$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(){
$( ".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();
}
});
});
</script>