view.ctp
7.92 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
<?php
// Variables passees a la vue :
$configurationObj = $configurationObj;
//debug($configurationObj);
// 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 echoSection($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;">';
echo '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
}
?>
<div class="configurations view">
<h2>Configuration générale de l'application</h2>
<?php
echo $this->Html->link(__('<i class="icon-pencil"></i> Editer la configuration'), [
'action' => 'edit',
$configurationObj->id
], [
'escape' => false,
'onclick' => 'return true;'
]);
echo '<br><br>';
echoSection("Modes", "informations");
/*
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 '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
//$displayElement(__('Mode install'), $install);
$displayElement(__('Mode install'), $configurationObj->mode_install==1?"Oui":"Non");
//$displayElement(__('Mode debug'), $debug);
$displayElement(__('Mode debug'), $configurationObj->mode_debug==1?"Oui":"Non");
echo '</table>';
echo '</div>';
echoSection("Laboratoire", "informations_admin");
/*
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 '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
$displayElement(__('Nom complet du Labo'), h($configurationObj->labName));
$displayElement(__('Nom court du Labo'), h($configurationObj->labNameShort));
$displayElement(__('Liaison présentation nom du Labo'), h($configurationObj->labPresent));
$displayElement(__('UMR du Labo'), h($configurationObj->labUmr));
echo '</table>';
echo '</div>';
echoSection("Divers", "suivis");
/*
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 '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
$displayElement(__('Librairie pdf utilisée'), $configurationObj->pdf_engine);
$displayElement(__('Afficher la procédure à suivre sur l\'écran d\'accueil'), $configurationObj->procedure_sur_accueil?'Oui':'Non');
$displayElement(__('Imprimante disponible'), h($configurationObj->hasPrinter)?"Oui":"Non");
$displayElement(__('Numéro format étiquette'), h($configurationObj->label_format_num));
$displayElement(__('Seuil (prix) Matériel administratif'), h($configurationObj->prix_inventaire_administratif));
$displayElement(__('Taille max documents (octets)'), substr($configurationObj->taille_max_doc / (1024 * 1024), 0, 4) . ' Mo');
$displayElement(__('Numero labo sans année'), $configurationObj->numero_labo_sans_annee?'Oui':'Non');
$displayElement(__('Champ date commande facultatif'), $configurationObj->date_commande_facultative?'Oui':'Non');
$displayElement(__('Label groupe thématique'), h($configurationObj->nom_groupe_thematique));
$displayElement(__('Label groupe métier'), h($configurationObj->nom_groupe_metier));
$displayElement(__('Module métrologie'), $configurationObj->metrologie?'Oui':'Non');
echo '</table>';
echo '</div>';
echoSection("Emails", "emprunts");
/*
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 '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
$displayElement(__('Activer l\'envoi des mails général'), h($configurationObj->envoi_mail)?'Oui':'Non');
$displayElement(__('Attribut "sender" (mail)'), h($configurationObj->sender_mail));
$displayElement(__('Activer l\'envoi des mails pour la liste spécifique ci-dessous'), h($configurationObj->envoi_mail_guests)?'Oui':'Non');
$displayElement(__('Mail guest 1'), h($configurationObj->emailGuest1));
$displayElement(__('Mail guest 2'), h($configurationObj->emailGuest2));
$displayElement(__('Mail guest 3'), h($configurationObj->emailGuest3));
$displayElement(__('Mail guest 4'), h($configurationObj->emailGuest4));
$displayElement(__('Mail guest 5'), h($configurationObj->emailGuest5));
$displayElement(__('Mail guest 6'), h($configurationObj->emailGuest6));
$displayElement(__('Mail guest 7'), h($configurationObj->emailGuest7));
$displayElement(__('Mail guest 8'), h($configurationObj->emailGuest8));
$displayElement(__('Mail guest 9'), h($configurationObj->emailGuest9));
$displayElement(__('Mail guest 10'), h($configurationObj->emailGuest10));
echo '</table>';
echo '</div>';
//if ($configuration->use_ldap) :
echoSection("LDAP", "fichiers");
/*
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 '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
$displayElement(__('Utilisation du LDAP'), h($configurationObj->ldap_used?"Oui":"Non"));
$displayElement(__('Host du LDAP'), h($configurationObj->ldap_host));
$displayElement(__('Port du LDAP'), h($configurationObj->ldap_port));
$displayElement(__('Type d\'authentification du LDAP'), h($configurationObj->ldap_authenticationType));
$displayElement(__('Base DN du LDAP'), h($configurationObj->ldap_baseDn));
$displayElement(__('Filtre du LDAP'), h($configurationObj->ldap_filter));
/*MCM*/
$displayElement(__('LDAP authentifié (non anonyme)'), h($configurationObj->ldap_authentified)?"Oui":"Non" );
$displayElement(__('Bind du LDAP'), h($configurationObj->ldap_bindDn));
$displayElement(__('Password Bind du LDAP'), h($configurationObj->ldap_bindPass));
/*fin MCM*/
echo '</table>';
echo '</div>';
//endif;
echoSection("Affichage", "affichage");
/*
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;">Affichage</span>';
echo '</h3>';
echo '<div id="emprunts" style="margin-bottom: 20px;">';
echo '<table>';
echo '<tr><th style="width: 250px;"></th><th></th></tr>';
*/
$displayElement(__('Nombre de materiel affichés par défaut'), h($configurationObj->aff_par_defaut));
echo '</table>';
echo '</div>';
?>
</div>
<div class="actions">
<?php
echo $this->element('menu')?>
</div>