delete registration
This commit is contained in:
parent
15dea9bd1b
commit
1c550d3f31
@ -1,2 +0,0 @@
|
||||
# Version 1.2
|
||||
- Compatiblité PHP 8.2
|
@ -1,388 +0,0 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
class registration extends common {
|
||||
|
||||
const VERSION = '1.2';
|
||||
const REALNAME = 'Auto-Inscription';
|
||||
const DELETE = true;
|
||||
const UPDATE = '0.0';
|
||||
const DATADIRECTORY = ''; // Contenu localisé inclus par défaut (page.json et module.json)
|
||||
|
||||
const STATUS_AWAITING = NULL; // En attente de validation du mail
|
||||
const STATUS_VALIDATED = -2; // Mail validé en attente d'un admin
|
||||
|
||||
public static $actions = [
|
||||
'index' => self::GROUP_VISITOR,
|
||||
'validate' => self::GROUP_VISITOR,
|
||||
'config' => self::GROUP_ADMIN,
|
||||
'user' => self::GROUP_ADMIN,
|
||||
'delete' => self::GROUP_ADMIN,
|
||||
'edit' => self::GROUP_ADMIN
|
||||
];
|
||||
|
||||
public static $statusGroups = [
|
||||
self::STATUS_AWAITING => 'En attente',
|
||||
self::STATUS_VALIDATED => 'Email validé',
|
||||
];
|
||||
|
||||
public static $timeLimit = [
|
||||
2 => '2 minutes',
|
||||
5 => '5 minutes',
|
||||
10 => '10 minutes'
|
||||
];
|
||||
|
||||
public static $users = [];
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Liste des utilisateurs en attente
|
||||
*/
|
||||
public function user() {
|
||||
$userIdsFirstnames = helper::arraycollumn($this->getData(['user']), 'firstname');
|
||||
ksort($userIdsFirstnames);
|
||||
foreach($userIdsFirstnames as $userId => $userFirstname) {
|
||||
if ( $this->getData(['user',$userId,'group']) === self::STATUS_AWAITING ||
|
||||
$this->getData(['user',$userId,'group']) === self::STATUS_VALIDATED ) {
|
||||
self::$users[] = [
|
||||
$userId,
|
||||
$userFirstname . ' ' . $this->getData(['user', $userId, 'lastname']),
|
||||
self::$statusGroups[$this->getData(['user', $userId, 'group'])] ,
|
||||
helper::dateUTF8(date('Y-m-d G:i'), $this->getData(['user', $userId, 'timer'])),
|
||||
template::button('registrationUserEdit' . $userId, [
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $userId . '/' . $_SESSION['csrf'],
|
||||
'value' => template::ico('pencil')
|
||||
]),
|
||||
template::button('registrationUserDelete' . $userId, [
|
||||
'class' => 'userDelete red',
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $userId . '/' . $_SESSION['csrf'],
|
||||
'value' => template::ico('cancel')
|
||||
])
|
||||
];
|
||||
}
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'title' => 'Demandes d\'inscription',
|
||||
'view' => 'user'
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Édition
|
||||
*/
|
||||
public function edit() {
|
||||
if ($this->getUrl(3) !== $_SESSION['csrf'] &&
|
||||
$this->getUrl(4) !== $_SESSION['csrf']) {
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . 'user',
|
||||
'notification' => 'Action non autorisée'
|
||||
]);
|
||||
}
|
||||
// Accès refusé
|
||||
if(
|
||||
// L'utilisateur n'existe pas
|
||||
$this->getData(['user', $this->getUrl(2)]) === null
|
||||
// Droit d'édition
|
||||
AND (
|
||||
// Impossible de s'auto-éditer
|
||||
(
|
||||
$this->getUser('id') === $this->getUrl(2)
|
||||
AND $this->getUrl('group') <= self::GROUP_VISITOR
|
||||
)
|
||||
// Impossible d'éditer un autre utilisateur
|
||||
OR ($this->getUrl('group') < self::GROUP_MODERATOR)
|
||||
)
|
||||
) {
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'access' => false
|
||||
]);
|
||||
}
|
||||
// Accès autorisé
|
||||
else {
|
||||
// Soumission du formulaire
|
||||
if($this->isPost()) {
|
||||
// Modification du groupe
|
||||
$this->setData([
|
||||
'user',
|
||||
$this->getUrl(2),
|
||||
[
|
||||
'firstname' => $this->getData(['user',$this->getUrl(2),'firstname']),
|
||||
'forgot' => 0,
|
||||
'group' => $this->getInput('registrationUserEditGroup',helper::FILTER_INT),
|
||||
'lastname' => $this->getData(['user',$this->getUrl(2),'lastname']),
|
||||
'mail' => $this->getData(['user',$this->getUrl(2),'mail']),
|
||||
'password' => $this->getData(['user',$this->getUrl(2),'password']),
|
||||
'connectFail' => $this->getData(['user',$this->getUrl(2),'connectFail']),
|
||||
'connectTimeout' => $this->getData(['user',$this->getUrl(2),'connectTimeout']),
|
||||
'accessUrl' => $this->getData(['user',$this->getUrl(2),'accessUrl']),
|
||||
'accessTimer' => $this->getData(['user',$this->getUrl(2),'accessTimer']),
|
||||
'accessCsrf' => $this->getData(['user',$this->getUrl(2),'accessCsrf'])
|
||||
]
|
||||
]);
|
||||
// Notifier le user uniquement si le groupe est membre au moins membre
|
||||
if ($this->getInput('registrationUserEditGroup') >= 1 ) {
|
||||
$this->sendMail(
|
||||
$this->getData(['user',$this->getUrl(2),'mail']),
|
||||
'Approbation de l\'inscription',
|
||||
'<p>' . $this->getdata(['module','registration',$this->getUrl(0),'config','mailValidateContent']) . '</p>'
|
||||
|
||||
);
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/user',
|
||||
'notification' => 'Modifications enregistrées',
|
||||
'state' => true
|
||||
]);
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'title' => $this->getData(['user', $this->getUrl(2), 'firstname']) . ' ' . $this->getData(['user', $this->getUrl(2), 'lastname']),
|
||||
'view' => 'edit'
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Suppression
|
||||
*/
|
||||
public function delete() {
|
||||
// Accès refusé
|
||||
if(
|
||||
// L'utilisateur n'existe pas
|
||||
$this->getData(['user', $this->getUrl(2)]) === null
|
||||
// Groupe insuffisant
|
||||
AND ($this->getUrl('group') < self::GROUP_MODERATOR)
|
||||
) {
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'access' => false
|
||||
]);
|
||||
}
|
||||
// Jeton incorrect
|
||||
elseif ($this->getUrl(3) !== $_SESSION['csrf']) {
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/user',
|
||||
'notification' => 'Action interdite'
|
||||
]);
|
||||
}
|
||||
// Bloque la suppression de son propre compte
|
||||
elseif($this->getUser('id') === $this->getUrl(2)) {
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/user',
|
||||
'notification' => 'Impossible de supprimer votre propre compte'
|
||||
]);
|
||||
}
|
||||
// Suppression
|
||||
else {
|
||||
$this->deleteData(['user', $this->getUrl(2)]);
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(0) . '/user',
|
||||
'notification' => 'Utilisateur supprimé',
|
||||
'state' => true
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Ajout
|
||||
*/
|
||||
public function index() {
|
||||
// Soumission du formulaire
|
||||
if($this->isPost()) {
|
||||
$check=true;
|
||||
// L'identifiant d'utilisateur est indisponible
|
||||
$userId = $this->getInput('registrationAddId', helper::FILTER_ID, true);
|
||||
if($this->getData(['module','registration', $userId])) {
|
||||
self::$inputNotices['registrationAddId'] = 'Identifiant déjà utilisé';
|
||||
$check=false;
|
||||
}
|
||||
// Double vérification pour le mot de passe
|
||||
if($this->getInput('registrationAddPassword', helper::FILTER_STRING_SHORT, true) !== $this->getInput('registrationAddConfirmPassword', helper::FILTER_STRING_SHORT, true)) {
|
||||
self::$inputNotices['registrationAddConfirmPassword'] = 'Incorrect';
|
||||
$check = false;
|
||||
}
|
||||
// Le mail existe déjà
|
||||
foreach($this->getData(['user']) as $usersId => $user) {
|
||||
if($user['mail'] === $this->getInput('registrationAddMail', helper::FILTER_MAIL, true) ) {
|
||||
self::$inputNotices['registrationAddMail'] = 'Mail déjà utilisé';
|
||||
$check = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// Données de l'utilisateur
|
||||
$userFirstname = $this->getInput('registrationAddFirstname', helper::FILTER_STRING_SHORT, true);
|
||||
$userLastname = $this->getInput('registrationAddLastname', helper::FILTER_STRING_SHORT, true);
|
||||
$userMail = $this->getInput('registrationAddMail', helper::FILTER_MAIL, true);
|
||||
$userTimer = $this->getInput('registrationAddTimer', helper::FILTER_INT, true);
|
||||
// Pas de nom saisi
|
||||
if (empty($userFirstname) ||
|
||||
empty($userLastname) ||
|
||||
empty($this->getInput('registrationAddPassword', helper::FILTER_STRING_SHORT, true)) ||
|
||||
empty($this->getInput('registrationAddConfirmPassword', helper::FILTER_STRING_SHORT, true))) {
|
||||
$check=false;
|
||||
}
|
||||
// Si tout est ok
|
||||
if ($check === true) {
|
||||
// création effective temporaire
|
||||
$this->setData([
|
||||
'user',
|
||||
$userId,
|
||||
[
|
||||
'firstname' => $userFirstname,
|
||||
'lastname' => $userLastname,
|
||||
'mail' => $userMail,
|
||||
'password' => $this->getInput('registrationAddPassword', helper::FILTER_PASSWORD, true),
|
||||
// pas de groupe afin de le différencier dans la liste des users
|
||||
'group' => null,
|
||||
'forgot' => 0,
|
||||
'timer' => $userTimer,
|
||||
'auth' => $_SESSION['csrf'],
|
||||
'status' => self::STATUS_AWAITING
|
||||
]
|
||||
]);
|
||||
// Mail d'avertissement aux administrateurs
|
||||
// Utilisateurs dans le groupe admin
|
||||
$to = [];
|
||||
foreach($this->getData(['user']) as $userId => $user) {
|
||||
if($user['group'] == self::GROUP_ADMIN) {
|
||||
$to[] = $user['mail'];
|
||||
}
|
||||
}
|
||||
// Envoi du mail
|
||||
if($to) {
|
||||
$messageAdmin = $this->getdata(['module','registration',$this->getUrl(0),'config','state']) ? 'Une demande d\'inscription attend l`approbation d\'un administrateur.' : 'Un nouveau membre s\'est inscrit.';
|
||||
// Envoi le mail
|
||||
$this->sendMail(
|
||||
$to,
|
||||
'Auto-inscription sur le site ' . $this->getData(['config', 'title']),
|
||||
'<p>' . $messageAdmin . '</p>' .
|
||||
'<p><strong>Identifiant du compte :</strong> ' . $userId .' (' . $userFirstname . ' ' . $userLastname . ')<br>' .
|
||||
'<strong>Email :</strong> ' . $userMail . '</p>' .
|
||||
'<a href="' . helper::baseUrl() . 'user/login/' . strip_tags(str_replace('/', '_', $this->getUrl(0) . '/user')) . '">Validation de l\'inscription</a>'
|
||||
);
|
||||
}
|
||||
|
||||
// Mail de confirmation à l'utilisateur
|
||||
// forger le lien de vérification
|
||||
$validateLink = helper::baseUrl(true) . $this->getUrl() . '/validate/' . $userId . '/' . $_SESSION['csrf'];
|
||||
// Envoi
|
||||
$sentMailtoUser = false;
|
||||
if($check === true) {
|
||||
$sentMailtoUser = $this->sendMail(
|
||||
$userMail,
|
||||
'Confirmation de votre inscription',
|
||||
'<p>' . $this->getdata(['module','registration',$this->getUrl(0),'config','mailRegisterContent']) . '</p>' .
|
||||
'<a href="'. $validateLink . '">Activer votre compte<a/>'
|
||||
);
|
||||
}
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl(),
|
||||
//'redirect' => $validateLink,
|
||||
'notification' => $sentMailtoUser ? "Consultez votre messagerie, un mail vous a été envoyé." : 'Quelque chose n\'a pas fonctionné !',
|
||||
'state' => $sentMailtoUser ? true : false
|
||||
]);
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'title' => 'Inscription',
|
||||
'view' => 'index',
|
||||
'showBarEditButton' => true,
|
||||
'showPageContent' => true
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Vérification de l'email
|
||||
*/
|
||||
public function validate() {
|
||||
// Vérifie la session + l'id + le timer
|
||||
$check = true;
|
||||
$notification = 'Bienvenue sur le site' . $this->getData(['config', 'title']) ;
|
||||
$csrf = $this->getUrl(3);
|
||||
$userId = $this->getUrl(2);
|
||||
// Validité
|
||||
if ( time() - $this->getData(['user',$userId,'timer']) <= (60 * $this->getdata(['module','registration',$this->getUrl(0),'config','pageTimeOut'])) ) {
|
||||
$check = false;
|
||||
$notification = 'Le lien n\'est plus valide';
|
||||
}
|
||||
if (( $csrf !== $this->getData(['user',$userId,'auth']) ) ) {
|
||||
$check = false;
|
||||
$notification = 'Identifiant ou mot de passe inconnu';
|
||||
}
|
||||
if ($check) {
|
||||
$this->setData([
|
||||
'user',
|
||||
$userId,
|
||||
[
|
||||
'firstname' => $this->getData(['user',$userId,'firstname']),
|
||||
'lastname' => $this->getData(['user',$userId,'lastname']),
|
||||
'mail' => $this->getData(['user',$userId,'mail']),
|
||||
'password' => $this->getData(['user',$userId,'password']),
|
||||
'group' => $this->getdata(['module','registration',$this->getUrl(0),'config','state']) === true ? self::STATUS_VALIDATED : self::GROUP_MEMBER,
|
||||
'forgot' => 0,
|
||||
'timer' => $this->getData(['user',$userId,'timer'])
|
||||
]
|
||||
]);
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'redirect' => $check ? helper::baseUrl() . $this->getdata(['module','registration',$this->getUrl(0),'config','pageSuccess']) : helper::baseUrl() . $this->getdata(['module','registration',$this->getUrl(0),'config','pageError']) ,
|
||||
'notificaton' => $notification,
|
||||
'state' => $check
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Module de configuration
|
||||
*/
|
||||
public function config() {
|
||||
// Soumission du formulaire
|
||||
if($this->isPost()) {
|
||||
// Lire les options et les enregistrer
|
||||
$this->setData(['module','registration',$this->getUrl(0),'config', [
|
||||
'timeOut' => $this->getInput('registrationConfigTimeOut',helper::FILTER_INT),
|
||||
'pageSuccess' => $this->getInput('registrationConfigSuccess'),
|
||||
'pageError' => $this->getInput('registrationConfigError'),
|
||||
'state' => $this->getInput('registrationConfigState',helper::FILTER_BOOLEAN),
|
||||
'mailRegisterContent' => $this->getInput('registrationconfigMailRegisterContent', null, true),
|
||||
'mailValidateContent' => $this->getInput('registrationconfigMailValidateContent', null, true),
|
||||
]]);
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl() . $this->getUrl(),
|
||||
'notification' => 'Modifications enregistrées',
|
||||
'state' => true
|
||||
]);
|
||||
}
|
||||
// Valeurs en sortie
|
||||
$this->addOutput([
|
||||
'title' => 'Configuration',
|
||||
'view' => 'config',
|
||||
'vendor' => ['tinymce']
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Rémi Jean <remi.jean@outlook.com>
|
||||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
@import url("core/layout/admin.css");
|
@ -1,92 +0,0 @@
|
||||
|
||||
<?php echo template::formOpen('registrationConfig'); ?>
|
||||
<div class="row">
|
||||
<div class="col2">
|
||||
<?php echo template::button('registrationConfigBack', [
|
||||
'class' => '',
|
||||
'href' => helper::baseUrl() .'page/edit/' . $this->getUrl(0) ,
|
||||
'ico' => 'left',
|
||||
'value' => 'Retour'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2 offset6">
|
||||
<?php echo template::button('registrationConfigBack', [
|
||||
'href' => helper::baseUrl() .$this->getUrl(0) . '/user' ,
|
||||
'value' => 'Inscriptions'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<?php echo template::submit('registrationConfigSubmit',[
|
||||
'class' => 'green'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<div class="block">
|
||||
<h4>Paramètres</h4>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::select('registrationConfigTimeOut', $module::$timeLimit , [
|
||||
'label' => 'Validité du lien',
|
||||
'selected' => $this->getData(['module','registration',$this->getUrl(0),'config','timeOut'])
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::select('registrationConfigSuccess', helper::arraycollumn($this->getData(['page']), 'title', 'SORT_ASC'), [
|
||||
'label' => 'Redirection après confirmation',
|
||||
'selected' => $this->getData(['module','registration',$this->getUrl(0),'config','pageSuccess'])
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col6">
|
||||
<?php echo template::select('registrationConfigError', helper::arraycollumn($this->getData(['page']), 'title', 'SORT_ASC'), [
|
||||
'label' => 'Redirection après erreur',
|
||||
'selected' => $this->getData(['module','registration',$this->getUrl(0),'config','pageError'])
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php $messageDefault = '<p>Confirmez votre inscription en cliquant sur ce lien dans les ... minutes.</p>'; ?>
|
||||
<?php echo template::textarea('registrationconfigMailRegisterContent', [
|
||||
'label' => 'Corps du mail de confirmation',
|
||||
'value' => !empty($this->getData(['module','registration',$this->getUrl(0),'config','mailRegisterContent'])) ? $this->getData(['module','registration',$this->getUrl(0),'config','mailRegisterContent']) : $messageDefault,
|
||||
'class' => 'editorWysiwyg',
|
||||
'help' => 'Précisez la durée de validité. Le lien sera inséré après ces explications.'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<div class="block">
|
||||
<h4>Approbation préalable</h4>
|
||||
<div class="row">
|
||||
<div class="col6 verticalAlignMiddle">
|
||||
<?php echo template::checkbox('registrationConfigState', true, 'Activée', [
|
||||
'checked' => $this->getData(['module','registration',$this->getUrl(0),'config','state']),
|
||||
'help' => 'Les comptes sont inactifs tant que les inscriptions ne sont pas approuvées par un administrateur.',
|
||||
'check' => true
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php $messageDefault = '<p>Votre inscription a été approuvée par un administrateur.</p>'; ?>
|
||||
<?php echo template::textarea('registrationconfigMailValidateContent', [
|
||||
'label' => 'Corps du mail d\'approbation',
|
||||
'value' =>!empty($this->getData(['module','registration',$this->getUrl(0),'config','mailValidateContent'])) ? $this->getData(['module','registration',$this->getUrl(0),'config','mailValidateContent']) : $messageDefault,
|
||||
'class' => 'editorWysiwyg'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo template::formClose(); ?>
|
||||
<div class="moduleVersion">Version n°<?php echo $module::VERSION; ?>
|
||||
</div>
|
@ -1,16 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Rémi Jean <remi.jean@outlook.com>
|
||||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
|
||||
@import url("core/layout/admin.css");
|
@ -1,19 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
/**
|
||||
* Droits des groupes
|
||||
*/
|
||||
$("#registrationUserEditGroup").on("change", function() {
|
||||
$(".registrationUserEditGroupDescription").hide();
|
||||
$("#registrationUserEditGroupDescription" + $(this).val()).show();
|
||||
}).trigger("change");
|
@ -1,111 +0,0 @@
|
||||
<?php echo template::formOpen('registrationUserEditForm'); ?>
|
||||
<div class="row">
|
||||
<div class="col2">
|
||||
<?php if($this->getUrl(3)): ?>
|
||||
<?php echo template::button('registrationUserEditBack', [
|
||||
'class' => '',
|
||||
'href' => helper::baseUrl() . $this->geturl(0) . '/user',
|
||||
'ico' => 'left',
|
||||
'value' => 'Retour'
|
||||
]); ?>
|
||||
<?php else: ?>
|
||||
<?php echo template::button('registrationUserEditBack', [
|
||||
'class' => '',
|
||||
'href' => helper::baseUrl(false),
|
||||
'ico' => 'home',
|
||||
'value' => 'Accueil'
|
||||
]); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="col2 offset8">
|
||||
<?php echo template::submit('registrationUserEditSubmit',[
|
||||
'class' => 'green'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<div class="block">
|
||||
<h4>Confirmation de l'inscription</h4>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::text('registrationUserEditFirstname', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Prénom',
|
||||
'value' => $this->getData(['user', $this->getUrl(2), 'firstname']),
|
||||
'disabled'=> true
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col6">
|
||||
<?php echo template::text('registrationUserEditLastname', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Nom',
|
||||
'value' => $this->getData(['user', $this->getUrl(2), 'lastname']),
|
||||
'disabled'=> true
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::mail('registrationUserEditMail', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Adresse mail',
|
||||
'value' => $this->getData(['user', $this->getUrl(2), 'mail']),
|
||||
'disabled'=> true
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php $status = $module::$statusGroups[$this->getData(['user', $this->getUrl(2), 'group'])];?>
|
||||
<?php echo template::text('resgistrationUserState', [
|
||||
'label' => 'État de l\'inscription',
|
||||
'value' => $status,
|
||||
'disabled'=> true,
|
||||
'help' => 'En attente : le mail n\'a pas encore été validé<br>Email validé : approbation nécessaire.'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col6">
|
||||
<?php echo template::text('resgistrationUsertimer', [
|
||||
'label' => 'Date',
|
||||
'value' => helper::dateUTF8(date('Y-m-d G:i'), $this->getData(['user', $userId, 'timer'])),
|
||||
'disabled'=> true
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col6">
|
||||
<?php if($this->getUser('group') === self::GROUP_ADMIN): ?>
|
||||
<?php echo template::select('registrationUserEditGroup', self::$groupEdits, [
|
||||
'disabled' => ($this->getUrl(2) === $this->getUser('id')),
|
||||
'help' => ($this->getUrl(2) === $this->getUser('id') ? 'Impossible de modifier votre propre groupe.' : ''),
|
||||
'label' => 'Groupe <em>(Banni : en attente d\'approbation)</em>',
|
||||
'selected' => $this->getData(['user', $this->getUrl(2), 'group'])
|
||||
]); ?>
|
||||
Autorisations :
|
||||
<ul id="registrationUserEditGroupDescription<?php echo self::GROUP_MEMBER; ?>" class="registrationUserEditGroupDescription displayNone">
|
||||
<li>Accès aux pages privées membres</li>
|
||||
</ul>
|
||||
<ul id="registrationUserEditGroupDescription<?php echo self::GROUP_MODERATOR; ?>" class="registrationUserEditGroupDescription displayNone">
|
||||
<li>Accès aux pages privées membres et éditeurs</li>
|
||||
<li>Ajout - Édition - Suppression de pages</li>
|
||||
<li>Ajout - Édition - Suppression de fichiers</li>
|
||||
</ul>
|
||||
<ul id="registrationUserEditGroupDescription<?php echo self::GROUP_ADMIN; ?>" class="registrationUserEditGroupDescription displayNone">
|
||||
<li>Accès à toutes les pages privées</li>
|
||||
<li>Ajout - Édition - Suppression de pages</li>
|
||||
<li>Ajout - Édition - Suppression de fichiers</li>
|
||||
<li>Ajout / Édition / Suppression d'utilisateurs</li>
|
||||
<li>Configuration du site</li>
|
||||
<li>Personnalisation du thème</li>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo template::formClose(); ?>
|
@ -1,47 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Affichage de l'id en simulant FILTER_ID
|
||||
*/
|
||||
$("#registrationAddId").on("change keydown keyup", function(event) {
|
||||
var userId = $(this).val();
|
||||
if(
|
||||
event.keyCode !== 8 // BACKSPACE
|
||||
&& event.keyCode !== 37 // LEFT
|
||||
&& event.keyCode !== 39 // RIGHT
|
||||
&& event.keyCode !== 46 // DELETE
|
||||
&& window.getSelection().toString() !== userId // Texte sélectionné
|
||||
) {
|
||||
var searchReplace = {
|
||||
"á": "a", "à": "a", "â": "a", "ä": "a", "ã": "a", "å": "a", "ç": "c", "é": "e", "è": "e", "ê": "e", "ë": "e", "í": "i", "ì": "i", "î": "i", "ï": "i", "ñ": "n", "ó": "o", "ò": "o", "ô": "o", "ö": "o", "õ": "o", "ú": "u", "ù": "u", "û": "u", "ü": "u", "ý": "y", "ÿ": "y",
|
||||
"Á": "A", "À": "A", "Â": "A", "Ä": "A", "Ã": "A", "Å": "A", "Ç": "C", "É": "E", "È": "E", "Ê": "E", "Ë": "E", "Í": "I", "Ì": "I", "Î": "I", "Ï": "I", "Ñ": "N", "Ó": "O", "Ò": "O", "Ô": "O", "Ö": "O", "Õ": "O", "Ú": "U", "Ù": "U", "Û": "U", "Ü": "U", "Ý": "Y", "Ÿ": "Y",
|
||||
"'": "-", "\"": "-", " ": "-"
|
||||
};
|
||||
userId = userId.replace(/[áàâäãåçéèêëíìîïñóòôöõúùûüýÿ'" ]/ig, function(match) {
|
||||
return searchReplace[match];
|
||||
});
|
||||
userId = userId.replace(/[^a-z0-9-]/ig, "");
|
||||
$(this).val(userId);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Droits des groupes
|
||||
*/
|
||||
$("#registrationAddGroup").on("change", function() {
|
||||
$(".registrationAddGroupDescription").hide();
|
||||
$("#registrationAddGroupDescription" + $(this).val()).show();
|
||||
}).trigger("change");
|
||||
|
||||
|
@ -1,82 +0,0 @@
|
||||
<?php echo template::formOpen('registrationAddForm'); ?>
|
||||
<div class="row">
|
||||
<div class="col8 offset2">
|
||||
<div class='block'>
|
||||
<h4>Identité</h4>
|
||||
<div class="row">
|
||||
<div class="col6">
|
||||
<?php echo template::text('registrationAddFirstname', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Prénom'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col6">
|
||||
<?php echo template::text('registrationAddLastname', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Nom'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::mail('registrationAddMail', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Adresse mail'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::hidden('registrationAddGroup', [
|
||||
'value' => self::GROUP_MEMBER
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='block'>
|
||||
<h4>Données de connexion</h4>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::text('registrationAddId', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Identifiant de connexion'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::password('registrationAddPassword', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Mot de passe'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::password('registrationAddConfirmPassword', [
|
||||
'autocomplete' => 'off',
|
||||
'label' => 'Confirmation du mot de passe'
|
||||
]);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12">
|
||||
<?php echo template::hidden('registrationAddTimer', [
|
||||
'value' => time()
|
||||
]);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col2 offset8">
|
||||
<?php echo template::submit('registrationAddSubmit', [
|
||||
'value' => 'Envoyer',
|
||||
'class' => 'green'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo template::formClose(); ?>
|
@ -1,16 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Rémi Jean <remi.jean@outlook.com>
|
||||
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
|
||||
@import url("core/layout/admin.css");
|
@ -1,21 +0,0 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
*
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
||||
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||
* @link http://zwiicms.com/
|
||||
*/
|
||||
|
||||
/**
|
||||
* Confirmation de suppression
|
||||
*/
|
||||
$(".registrationUserDelete").on("click", function() {
|
||||
var _this = $(this);
|
||||
return core.confirm("Êtes-vous sûr de vouloir supprimer cet utilisateur ?", function() {
|
||||
$(location).attr("href", _this.attr("href"));
|
||||
});
|
||||
});
|
@ -1,15 +0,0 @@
|
||||
<div class="row">
|
||||
<div class="col2">
|
||||
<?php echo template::button('registrationUserBack', [
|
||||
'class' => '',
|
||||
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
|
||||
'value' => 'Retour'
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if($module::$users): ?>
|
||||
<?php echo template::table([3, 3, 2,21, 1, 1], $module::$users, ['Identifiant', 'Nom', 'Etat', 'Date', '', '']); ?>
|
||||
<?php else: ?>
|
||||
<?php echo template::speech('Pas d\'inscription en attente.'); ?>
|
||||
<?php endif; ?>
|
@ -1,2 +0,0 @@
|
||||
<?php
|
||||
// Page vide
|
Loading…
Reference in New Issue
Block a user