add.ctp
5.68 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
<?php
//var_dump($users_option_list);
//var_dump($users_login_and_email);
/*
* (EP)
* Variables passed to this view by the Controller :
*/
$users_option_list = $users_option_list;
$users_login_and_email = $users_login_and_email;
// TODO: yena d'autres... il faut les lister toutes ici, pour plus de clarté
?>
<div class="utilisateurs form">
<?= $this->Form->create($user) ?>
<?php $LDAP_USED = $configuration->ldap_used; ?>
<fieldset>
<h2>
<i class="icon-plus"></i> Ajouter un utilisateur privilégié
</h2>
<?php
// LDAP
if ($LDAP_USED) {
echo $this->Form->control('nom', [
'options' => $users_option_list,
'empty' => 'Choisir un utilisateur',
'label' => 'Nom (LDAP)',
'div' => 'input required'
]);
}
// fake LDAP
else {
echo $this->Form->control('newname', [
'label' => 'Nom',
'div' => 'input required'
]);
echo $this->Form->control('newgivenname', [
'label' => 'Prénom',
'div' => 'input required'
]);
}
echo '<div style="color: grey; font-size: 10px;">Note: un utilisateur ne peut pas être présent deux fois dans l\'inventaire.</div>';
$READONLY = $LDAP_USED ? true : false;
echo $this->Form->control('username', [
'label' => 'Login',
'div' => 'input required',
'readonly' => $READONLY
]);
if (! $LDAP_USED) {
echo $this->Form->control('password');
}
echo $this->Form->control('email', [
'label' => 'E-mail',
'div' => 'input required',
'readonly' => $READONLY
]);
echo $this->Form->control('role', [
'label' => 'Rôle',
'empty' => 'N/A',
'options' => [
'Super Administrateur' => 'Super Administrateur',
'Administration Plus' => 'Administration Plus',
'Administration' => 'Administration',
'Responsable' => 'Responsable',
'Utilisateur' => 'Utilisateur'
]
]);
// Groupe métier
echo $this->Form->control('groupes_metier_id', [
'label' => $configuration->nom_groupe_metier,
'options' => $groupesMetiers,
'default' => 1
]);
echo $this->Form->control('is_resp_groupes_metier', [
'label' => 'Responsable du '.$configuration->nom_groupe_metier,
]);
// Groupe thematique
echo $this->Form->control('groupes_thematique_id', [
'label' => $configuration->nom_groupe_thematique,
'options' => $groupesThematiques,
'default' => 1
]);
echo $this->Form->control('is_resp_groupes_thematique', [
'label' => 'Responsable du '.$configuration->nom_groupe_thematique,
]);
// Domaine
echo $this->Form->control('sur_categorie_id', [
'label' => 'Domaine',
'options' => $sur_categorie,
'default' => 0
]);
?>
</fieldset>
<?= $this->Form->submit(__('Valider')) ?>
<?= $this->Form->end() ?>
</div>
<!--
<div class="actions">
<php
echo $this->element('menu');
echo $this->element('menu_form', [ 'pluralHumanName' => 'Utilisateurs' ]);
?>
</div>
-->
<?php
// Javascript functions, only if LDAP
if ($LDAP_USED) {
?>
<script type="text/javascript">
/**
* Quand on selectionne un utilisateur dans la liste => on met à jour son login et son email (en readonly)
* (EP 6/5/19) New method, quicker, get email directly from PHP $users_login_and_email array
* (OLD code is at end of file)
*
* Event "Nom utilisateur" change => "login" and "email" change
*
* TODO: Code commun avec edit.ctp => factoriser quelque part, mais comment, vu qu'on a besoin du tableau users_login_and_email ???
*/
$(document).ready(function () {
// Convert (once for all) PHP $users_login_and_email array to JAVASCRIPT array
//Implode Method
//var array = [INF?php echo implode($array, ","); ?SUP];
//JSON Method
var users_login_and_email = <?php echo json_encode($users_login_and_email); ?>;
/* (EP) ON "nom" change => update login and email */
$("#nom").bind("change", function(event) {
//if ( $("#nom").val() == "" ) return false;
var user_name = $("#nom").val();
var new_login = '';
var new_email = '';
if (user_name != '') {
new_login = users_login_and_email[user_name]["login"];
new_email = users_login_and_email[user_name]["email"];
}
$("#username").val(new_login);
$("#email").val(new_email);
});
}); // ON document.ready()
/*
//OLD method, fetch login and email via AJAX request to UsersController.getLdapLogin and getLdapEmail()
$("#nom").bind("change", function (event) {
if ( $("#nom").val() == "" ) return false;
var url = document.URL;
/* Mise a jour du login */
/* Pour tester manuellement :
Quand on est sur la page d'ajout d'un utilisateur,
remplacer dans l'url "/users/add" par "/users/getLdapLogin/Pallier Etienne" par exemple
*/
/*
var loginUrl = url.replace("add", "getLdapLogin/");
$.ajax({
url: loginUrl + $("#nom").val()
}).done(function(data) {
$("#username").val(data)
});
/* Mise a jour du mail */
/* Pour tester manuellement : Voir exemple precedent, c'est le meme principe */
/*
var emailUrl = url.replace("add", "getLdapEmail/");
$.ajax({
url: emailUrl + $("#nom").val()
}).done(function(data) {
$("#email").val(data)
});
}); // ON "nom" field change
*/
</script>
<?php
} // if ($LDAP_USED)
?>