add.ctp 3.22 KB

<div class="utilisateurs form">
    <?= $this->Form->create($user) ?>
    <?php $USE_LDAP = $configuration->use_ldap; ?>
    <fieldset>
		<h2>
			<i class="icon-plus"></i> Ajouter un utilisateur privilégié
		</h2>
        <?php
        
        // fake LDAP
        if (! $USE_LDAP) {
            echo $this->Form->input('newname', [
                'label' => 'Nom',
                'div' => 'input required'
            ]);
            echo $this->Form->input('newgivenname', [
                'label' => 'Prénom',
                'div' => 'input required'
            ]);
        } else {
            echo $this->Form->input('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 = $USE_LDAP ? true : false;
        
        echo $this->Form->input('username', [
            'label' => 'Login',
            'div' => 'input required',
            'readonly' => $READONLY
        ]);
        
        if (! $USE_LDAP) {
            echo $this->Form->input('password');
        }
        
        echo $this->Form->input('email', [
            'label' => 'E-mail',
            'div' => 'input required',
            'readonly' => $READONLY
        ]);
        
        echo $this->Form->input('role', [
            'label' => 'Rôle',
            'options' => [
                'Super Administrateur' => 'Super Administrateur',
                'Administration Plus' => 'Administration Plus',
                'Administration' => 'Administration',
                'Responsable' => 'Responsable',
                'Utilisateur' => 'Utilisateur'
            ]
        ]);
        echo $this->Form->input('groupes_metier_id', [
            'label' => $configuration->nom_groupe_metier,
            'options' => $groupesMetiers,
            'default' => 1
        ]);
        echo $this->Form->input('groupe_thematique_id', [
            'label' => $configuration->nom_groupe_thematique,
            'options' => $groupesThematiques,
            'default' => 1
        ]);
        echo $this->Form->input('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 ($USE_LDAP) {
    ?>
<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)
		});
		var loginUrl = url.replace("add", "getLdapLogin/");
		$.ajax({
			url: loginUrl + $("#nom").val()
		}).done(function(data) {
			$("#username").val(data)
		});
	});
});
 

</script>

<?php
}
?>