edit.ctp
2.19 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
<div class="utilisateurs form">
<?= $this->Form->create($user) ?>
<?php $LDAP_USED = $configuration->ldap_used; ?>
<fieldset>
<h2>
<i class="icon-edit"></i> Editer un utilisateur privilégié
</h2>
<?php
$options = [];
echo $this->Form->control('nom', [
'options' => $options,
'empty' => 'Choisir un utilisateur',
'disabled' => true,
'div' => 'input required'
]);
$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',
'options' => [
'Super Administrateur' => 'Super Administrateur',
'Administration Plus' => 'Administration Plus',
'Administration' => 'Administration',
'Responsable' => 'Responsable',
'Utilisateur' => 'Utilisateur'
]
]);
echo $this->Form->control('groupes_metier_id', [
'label' => $configuration->nom_groupe_metier,
'options' => $groupesMetiers,
'default' => 1
]);
echo $this->Form->control('groupe_thematique_id', [
'label' => $configuration->nom_groupe_thematique,
'options' => $groupesThematiques,
'default' => 1
]);
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>