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-22 15:19:18 +02:00
|
|
|
'disabled' => $this->getUser('group') > self::GROUP_EDITOR ? 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-10-06 09:53:53 +02:00
|
|
|
'disabled' => $this->getUser('group') > self::GROUP_EDITOR ? 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>
|
2023-11-30 13:23:41 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::mail('userEditMail', [
|
|
|
|
'autocomplete' => 'off',
|
|
|
|
'label' => 'Adresse électronique',
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'mail'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::select('userEditLanguage', $module::$languagesInstalled, [
|
|
|
|
'label' => 'Langue',
|
|
|
|
'selected' => $this->getData(['user', $this->getUrl(2), 'language'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php echo template::text('userEditTags', [
|
2023-11-30 14:29:38 +01:00
|
|
|
'label' => 'Étiquettes',
|
2024-02-09 09:52:33 +01:00
|
|
|
'readonly' => $this->getUser('group') > self::GROUP_EDITOR ? false : true,
|
2023-11-30 13:23:41 +01:00
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'tags']),
|
2024-01-27 16:32:46 +01:00
|
|
|
'help' => 'Les étiquettes sont séparées par des espaces'
|
2023-11-30 13:23:41 +01:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-05 15:21:01 +02:00
|
|
|
</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)
|
|
|
|
]); ?>
|
2023-11-30 13:23:41 +01:00
|
|
|
<?php
|
2023-11-07 21:48:24 +01:00
|
|
|
// Les admins ont le pouvoir de forcer le changement de mot de passe
|
|
|
|
if ($this->getUser('group') < self::GROUP_ADMIN): ?>
|
|
|
|
<?php echo template::password('userEditOldPassword', [
|
|
|
|
'autocomplete' => 'new-password',
|
|
|
|
// remplace 'off' pour éviter le pré remplissage auto
|
|
|
|
'label' => 'Ancien mot de passe',
|
|
|
|
]); ?>
|
|
|
|
<?php endif; ?>
|
2023-09-05 15:21:01 +02:00
|
|
|
<?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">
|
2023-10-06 09:53:53 +02:00
|
|
|
<div class="col6 offset3">
|
2023-09-05 15:21:01 +02:00
|
|
|
<div class="block">
|
|
|
|
<h4>
|
|
|
|
<?php echo helper::translate('Permissions'); ?>
|
|
|
|
</h4>
|
|
|
|
<div class="row">
|
2023-10-06 09:53:53 +02:00
|
|
|
<div class="col12">
|
2023-09-05 15:21:01 +02:00
|
|
|
<?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']),
|
|
|
|
]); ?>
|
2023-10-06 09:53:53 +02:00
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::hidden('userEditGroup', [
|
|
|
|
'value' => $this->getData(['user', $this->getUrl(2), 'group'])
|
|
|
|
]); ?>
|
2023-09-05 15:21:01 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2023-10-06 09:53:53 +02:00
|
|
|
<div class="col12">
|
|
|
|
<div class="userEditGroupProfil" id="userEditGroupProfil<?php echo self::GROUP_MEMBER; ?>">
|
2023-09-22 15:19:18 +02:00
|
|
|
<?php echo template::select('userEditProfil' . self::GROUP_MEMBER, $module::$userProfils[self::GROUP_MEMBER], [
|
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>
|
2023-10-06 09:53:53 +02:00
|
|
|
<div class="userEditGroupProfil" id="userEditGroupProfil<?php echo self::GROUP_EDITOR; ?>">
|
2023-09-22 15:19:18 +02:00
|
|
|
<?php echo template::select('userEditProfil' . self::GROUP_EDITOR, $module::$userProfils[self::GROUP_EDITOR], [
|
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">
|
2023-10-06 09:53:53 +02:00
|
|
|
<div id="userCommentProfil<?php echo self::GROUP_MEMBER; ?>" class="col12 userCommentProfil">
|
|
|
|
<?php echo template::textarea('userEditProfilComment' . self::GROUP_MEMBER, [
|
|
|
|
'label' => 'Commentaire',
|
|
|
|
'value' => implode("\n", $module::$userProfilsComments[self::GROUP_MEMBER]),
|
|
|
|
'disabled' => true,
|
|
|
|
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div id="userCommentProfil<?php echo self::GROUP_EDITOR; ?>" class="col12 userCommentProfil">
|
|
|
|
<?php echo template::textarea('userEditProfilComment' . self::GROUP_EDITOR, [
|
|
|
|
'label' => 'Commentaire',
|
|
|
|
'value' => implode("\n", $module::$userProfilsComments[self::GROUP_EDITOR]),
|
|
|
|
'disabled' => true,
|
|
|
|
|
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</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' => true,
|
|
|
|
]);
|
|
|
|
?>
|
2023-09-05 15:21:01 +02:00
|
|
|
</div>
|
2023-10-06 09:53:53 +02:00
|
|
|
|
2023-09-05 15:21:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php echo template::formClose(); ?>
|