Form->create($user) ?> ldap_used; ?>

Ajouter un utilisateur privilégié

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 '
Note: un utilisateur ne peut pas être présent deux fois dans l\'inventaire.
'; $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' ] ]); 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 ]); ?>
Form->submit(__('Valider')) ?> Form->end() ?>
element('menu'); echo $this->element('menu_form', [ 'pluralHumanName' => 'Utilisateurs' ]); ?>