add.ctp 3.33 KB

<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
        
        // fake LDAP
        if (! $LDAP_USED) {
            echo $this->Form->control('newname', [
                'label' => 'Nom',
                'div' => 'input required'
            ]);
            echo $this->Form->control('newgivenname', [
                'label' => 'Prénom',
                'div' => 'input required'
            ]);
        } else {
            echo $this->Form->control('nom', [
                'options' => $utilisateurs,
                'empty' => 'Choisir un utilisateur',
                'label' => 'Nom (LDAP)',
                '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'
            ]
        ]);
        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>

<?php
if ($LDAP_USED) {
    ?>
<script type="text/javascript">

$(document).ready(function () {
	$("#nom").bind("change", function (event) {
		if ( $("#nom").val() == "" ) return false;
		var url = document.URL;
		var emailUrl = url.replace("add", "getLdapEmail/");
		$.ajax({
			url: emailUrl + $("#nom").val()
		}).done(function(data) { 
			$("#email").val(data)
		});
		/* (EP) il ne sert à rien de rechercher le login !!!
		var loginUrl = url.replace("add", "getLdapLogin/");
		$.ajax({
			url: loginUrl + $("#nom").val()
		}).done(function(data) {
			$("#username").val(data)
		});
		*/
	});
});
 

</script>

<?php
}
?>