Blame view

src/Template/Users/edit.ctp 1.58 KB
19798ef9   Alexandre   Mode_install, maj...
1
2

<div class="utilisateurs form">
64fba1a2   Alexandre   Base du projet : ...
3
    <?= $this->Form->create($user) ?>
e1f6c5b7   Alexandre   Version: 2.3.0.0
4
    <?php $USE_LDAP = $configuration->use_ldap; ?>
6c4edfa3   Alexandre   First Commit LabI...
5
    <fieldset>
e1f6c5b7   Alexandre   Version: 2.3.0.0
6
        <h2><i class="icon-edit"></i> Editer un utilisateur privilégié</h2>
6c4edfa3   Alexandre   First Commit LabI...
7
        <?php
e1f6c5b7   Alexandre   Version: 2.3.0.0
8
9
10
11
12
13
14
15
16
17
18
19
20
21
        $options = [];
            echo $this->Form->input('nom', [
			'options' => $options, 
			'empty' => 'Choisir un utilisateur', 
			'disabled' => true,
			'div' => 'input required']);
            
            $READONLY = $USE_LDAP ? true:false;
            
            echo $this->Form->input('username', [
			'label' => 'Login',
			'div' => 'input required', 
			'readonly' => $READONLY]);
            
771aa727   Alexandre   Version: 2.3.2.0
22
23
24
            if(!$USE_LDAP) {
            	echo $this->Form->input('password');
            }
e1f6c5b7   Alexandre   Version: 2.3.0.0
25
26
27
28
29
30
31
            
            echo $this->Form->input('email',  [
			'label' => 'E-mail',
			'div' => 'input required', 
			'readonly' => $READONLY]);
            
            echo $this->Form->input('role', ['label' => 'Rôle',
19798ef9   Alexandre   Mode_install, maj...
32
33
            'options' => ['Super Administrateur' => 'Super Administrateur', 'Administration Plus' => 'Administration Plus', 'Administration' => 'Administration', 'Responsable' => 'Responsable', 'Utilisateur' => 'Utilisateur']
       		 ]);
e1f6c5b7   Alexandre   Version: 2.3.0.0
34
            echo $this->Form->input('groupes_metier_id', ['label' => 'Groupe métier', 'options' => $groupesMetiers, 'default' => 1, 'style' => 'width: 100px']);
6c4edfa3   Alexandre   First Commit LabI...
35
36
        ?>
    </fieldset>
0e5846aa   Alexandre   Css bouton valide...
37
    <?= $this->Form->submit(__('Valider')) ?>
6c4edfa3   Alexandre   First Commit LabI...
38
39
    <?= $this->Form->end() ?>
</div>
19798ef9   Alexandre   Mode_install, maj...
40
41
42
43
44
45

<div class="actions">
	<?php 
		echo $this->element('menu');
		echo $this->element('menu_form', [ 'pluralHumanName' => 'Utilisateurs' ]);
	?>
e1f6c5b7   Alexandre   Version: 2.3.0.0
46
</div>