2023-09-05 15:21:01 +02:00
|
|
|
<?php echo template::formOpen('userEditForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col1">
|
|
|
|
<?php if ($this->getUser('group') === self::GROUP_ADMIN): ?>
|
|
|
|
<?php echo template::button('userEditBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'user',
|
|
|
|
'value' => template::ico('left')
|
|
|
|
]); ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::button('userEditBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl(false),
|
|
|
|
'value' => template::ico('home')
|
|
|
|
]); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset9">
|
|
|
|
<?php echo template::submit('userEditSubmit'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
|
|
|
<?php echo helper::translate('Identité'); ?>
|
|
|
|
</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('userEditFirstname', [
|
|
|
|
'autocomplete' => 'off',
|
2023-09-05 21:16:23 +02:00
|
|
|
'disabled' => $this->getUser('group') > self::GROUP_TEACHER ? false : true,
|
2023-09-05 15:21:01 +02:00
|
|
|
'label' => 'Prénom',
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'firstname'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('userEditLastname', [
|
|
|
|
'autocomplete' => 'off',
|
2023-09-05 21:16:23 +02:00
|
|
|
'disabled' => $this->getUser('group') > self::GROUP_TEACHER ? false : true,
|
2023-09-05 15:21:01 +02:00
|
|
|
'label' => 'Nom',
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'lastname'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('userEditPseudo', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'label' => 'Pseudo',
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'pseudo'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::select('userEditSignature', $module::$signature, [
|
|
|
|
'label' => 'Signature',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'signature'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::mail('userEditMail', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'label' => 'Adresse électronique',
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'mail'])
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::select('userEditLanguage', $module::$languagesInstalled, [
|
|
|
|
'label' => 'Langue',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'language'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
|
|
|
<?php echo helper::translate('Authentification'); ?>
|
|
|
|
</h4>
|
|
|
|
<?php echo template::text('userEditId', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'help' => 'L\'identifiant est défini lors de la création du compte, il ne peut pas être modifié.',
|
|
|
|
'label' => 'Identifiant',
|
|
|
|
'readonly' => true,
|
|
|
|
'value' => $this->getUrl(2)
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::password('userEditOldPassword', [
|
|
|
|
'autocomplete' => 'new-password',
|
|
|
|
// remplace 'off' pour éviter le pré remplissage auto
|
|
|
|
'label' => 'Ancien mot de passe'
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::password('userEditNewPassword', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'label' => 'Nouveau mot de passe'
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::password('userEditConfirmPassword', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'label' => 'Confirmation'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
|
|
|
<?php echo helper::translate('Permissions'); ?>
|
|
|
|
</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php if ($this->getUser('group') === self::GROUP_ADMIN): ?>
|
|
|
|
<?php echo template::select('userEditGroup', self::$groupEdits, [
|
|
|
|
'disabled' => ($this->getUrl(2) === $this->getUser('id')),
|
|
|
|
'help' => ($this->getUrl(2) === $this->getUser('id') ? 'Impossible de modifier votre propre groupe.' : ''),
|
|
|
|
'label' => 'Groupe',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'group']),
|
|
|
|
]); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<div class="userEditGroupProfil displayNone"
|
2023-09-21 21:19:39 +02:00
|
|
|
id="userEditGroupProfil<?php echo self::GROUP_STUDENT; ?>">
|
|
|
|
<?php echo template::select('userEditProfil' . self::GROUP_STUDENT, $module::$userProfils[self::GROUP_STUDENT], [
|
2023-09-05 15:21:01 +02:00
|
|
|
'label' => 'Profil',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'profil']),
|
|
|
|
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="userEditGroupProfil displayNone"
|
2023-09-05 21:16:23 +02:00
|
|
|
id="userEditGroupProfil<?php echo self::GROUP_TEACHER; ?>">
|
|
|
|
<?php echo template::select('userEditProfil' . self::GROUP_TEACHER, $module::$userProfils[self::GROUP_TEACHER], [
|
2023-09-05 15:21:01 +02:00
|
|
|
'label' => 'Profil',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'profil']),
|
|
|
|
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
2023-09-21 21:19:39 +02:00
|
|
|
<div id="userCommentProfil<?php echo self::GROUP_STUDENT; ?>"
|
2023-09-05 15:21:01 +02:00
|
|
|
class="col12 userCommentProfil">
|
2023-09-21 21:19:39 +02:00
|
|
|
<?php echo template::textarea('userEditProfilComment' . self::GROUP_STUDENT, [
|
|
|
|
"value" => implode("\n", $module::$userProfilsComments[self::GROUP_STUDENT]),
|
2023-09-05 15:21:01 +02:00
|
|
|
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
2023-09-05 21:16:23 +02:00
|
|
|
<div id="userCommentProfil<?php echo self::GROUP_TEACHER; ?>"
|
2023-09-05 15:21:01 +02:00
|
|
|
class="col12 userCommentProfil">
|
2023-09-05 21:16:23 +02:00
|
|
|
<?php echo template::textarea('userEditProfilComment' . self::GROUP_TEACHER, [
|
|
|
|
"value" => implode("\n", $module::$userProfilsComments[self::GROUP_TEACHER]),
|
2023-09-05 15:21:01 +02:00
|
|
|
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div id="userCommentProfil<?php echo self::GROUP_ADMIN; ?>"
|
|
|
|
class="col12 userCommentProfil">
|
|
|
|
<?php echo template::textarea('userEditProfilComment' . self::GROUP_ADMIN, [
|
|
|
|
'label' => 'Commentaire',
|
|
|
|
"value" => implode("\n", $module::$userProfilsComments[self::GROUP_ADMIN]),
|
|
|
|
'disabled' => $this->getUser('group') !== self::GROUP_ADMIN,
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|