forked from ZwiiCMS-Team/ZwiiCMS
Edit group WIP
This commit is contained in:
parent
bb932110dc
commit
ead284fff7
@ -969,9 +969,6 @@ if ($this->getData(['core', 'dataVersion']) < 12400) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Création des modèles de groupe
|
|
||||||
|
|
||||||
|
|
||||||
// Mise à jour
|
// Mise à jour
|
||||||
$this->setData(['core', 'dataVersion', 12400]);
|
$this->setData(['core', 'dataVersion', 12400]);
|
||||||
|
|
||||||
|
@ -335,27 +335,27 @@ class init extends common
|
|||||||
'blacklist' => [],
|
'blacklist' => [],
|
||||||
'language'=> [],
|
'language'=> [],
|
||||||
'group' => [
|
'group' => [
|
||||||
-1 => [
|
"-1" => [
|
||||||
'name' => 'Banni',
|
'name' => 'Banni',
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'comment' => 'Inscription désactivée'
|
'comment' => 'Accès désactivé'
|
||||||
],
|
],
|
||||||
0 => [
|
"0" => [
|
||||||
'name' => 'Visiteur',
|
'name' => 'Visiteur',
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'comment' => 'Accès aux pages privées'
|
'comment' => 'Accède au site'
|
||||||
],
|
],
|
||||||
1 => [
|
"1" => [
|
||||||
'name' => 'Membre',
|
'name' => 'Membre',
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'comment' => 'Accède aux pages réservées'
|
'comment' => 'Accède aux pages réservées'
|
||||||
],
|
],
|
||||||
2 => [
|
"2" => [
|
||||||
'name' => 'Editeur',
|
'name' => 'Editeur',
|
||||||
'readonly' => false,
|
'readonly' => false,
|
||||||
'comment' => 'Edition des pages'
|
'comment' => 'Edition des pages'
|
||||||
],
|
],
|
||||||
99 => [
|
"99" => [
|
||||||
'name' => 'Administrateur',
|
'name' => 'Administrateur',
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
'comment' => 'Contrôle total'
|
'comment' => 'Contrôle total'
|
||||||
|
@ -28,6 +28,8 @@ class user extends common
|
|||||||
'login' => self::GROUP_VISITOR,
|
'login' => self::GROUP_VISITOR,
|
||||||
'reset' => self::GROUP_VISITOR,
|
'reset' => self::GROUP_VISITOR,
|
||||||
'group' => self::GROUP_ADMIN,
|
'group' => self::GROUP_ADMIN,
|
||||||
|
'groupAdd' => self::GROUP_ADMIN,
|
||||||
|
'groupEdit' => self::GROUP_ADMIN,
|
||||||
];
|
];
|
||||||
|
|
||||||
public static $users = [];
|
public static $users = [];
|
||||||
@ -42,6 +44,8 @@ class user extends common
|
|||||||
|
|
||||||
public static $userId = '';
|
public static $userId = '';
|
||||||
|
|
||||||
|
public static $userGroups = [];
|
||||||
|
|
||||||
public static $userLongtime = false;
|
public static $userLongtime = false;
|
||||||
|
|
||||||
public static $separators = [
|
public static $separators = [
|
||||||
@ -303,11 +307,15 @@ class user extends common
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Langues disponibles pour l'interface de l'utilisateur
|
// Langues disponibles pour l'interface de l'utilisateur
|
||||||
|
|
||||||
self::$languagesInstalled = $this->getData(['language']);
|
self::$languagesInstalled = $this->getData(['language']);
|
||||||
foreach (self::$languagesInstalled as $lang => $datas) {
|
if (self::$languagesInstalled) {
|
||||||
self::$languagesInstalled[$lang] = self::$languages[$lang];
|
foreach (self::$languagesInstalled as $lang => $datas) {
|
||||||
|
self::$languagesInstalled[$lang] = self::$languages[$lang];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'title' => $this->getData(['user', $this->getUrl(2), 'firstname']) . ' ' . $this->getData(['user', $this->getUrl(2), 'lastname']),
|
'title' => $this->getData(['user', $this->getUrl(2), 'firstname']) . ' ' . $this->getData(['user', $this->getUrl(2), 'lastname']),
|
||||||
@ -401,9 +409,27 @@ class user extends common
|
|||||||
*/
|
*/
|
||||||
public function group()
|
public function group()
|
||||||
{
|
{
|
||||||
$groups = $this->getData(['group']);
|
$g = $this->getData(['group']);
|
||||||
foreach ($groups as $key => $value) {
|
foreach ($g as $groupId => $groupData) {
|
||||||
|
|
||||||
|
self::$userGroups[$groupId] = [
|
||||||
|
$groupId,
|
||||||
|
$groupData['name'],
|
||||||
|
$groupData['comment'],
|
||||||
|
template::button('groupEdit' . $groupId, [
|
||||||
|
'href' => helper::baseUrl() . 'user/groupEdit/' . $groupId . '/' . $_SESSION['csrf'],
|
||||||
|
'value' => template::ico('pencil'),
|
||||||
|
'help' => 'Éditer',
|
||||||
|
'disabled' => $groupData['readonly'],
|
||||||
|
]),
|
||||||
|
template::button('userDelete' . $groupId, [
|
||||||
|
'class' => 'userDelete buttonRed',
|
||||||
|
'href' => helper::baseUrl() . 'user/groupDelete/' . $groupId . '/' . $_SESSION['csrf'],
|
||||||
|
'value' => template::ico('trash'),
|
||||||
|
'help' => 'Supprimer',
|
||||||
|
'disabled' => $groupData['readonly'],
|
||||||
|
])
|
||||||
|
];
|
||||||
}
|
}
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
@ -412,6 +438,19 @@ class user extends common
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Edition d'un groupe
|
||||||
|
*/
|
||||||
|
public function groupEdit()
|
||||||
|
{
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'title' => helper::translate('Editer groupe'),
|
||||||
|
'view' => 'groupEdit'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Connexion
|
* Connexion
|
||||||
|
@ -6,7 +6,5 @@
|
|||||||
'value' => template::ico('left')
|
'value' => template::ico('left')
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col2 offset9">
|
</div>
|
||||||
<?php echo template::submit('userGroupSubmit'); ?>
|
<?php echo template::table([1, 3, 6, 1, 1], $module::$userGroups, ['#', 'Nom', 'Commentaire', '', '']); ?>
|
||||||
</div>
|
|
||||||
</div>
|
|
18
core/module/user/view/groupEdit/groupEdit.css
Normal file
18
core/module/user/view/groupEdit/groupEdit.css
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
/**
|
||||||
|
* 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-2023, Frédéric Tempez
|
||||||
|
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
|
||||||
|
* @link http://zwiicms.fr/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** NE PAS EFFACER
|
||||||
|
* admin.css
|
||||||
|
*/
|
13
core/module/user/view/groupEdit/groupEdit.php
Normal file
13
core/module/user/view/groupEdit/groupEdit.php
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?php echo template::formOpen('groupEditForm'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col1">
|
||||||
|
<?php echo template::button('userEditBack', [
|
||||||
|
'class' => 'buttonGrey',
|
||||||
|
'href' => helper::baseUrl() . 'user',
|
||||||
|
'value' => template::ico('left')
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col2 offset9">
|
||||||
|
<?php echo template::submit('groupEditSubmit'); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
x
Reference in New Issue
Block a user