diff --git a/core/module/page/page.php b/core/module/page/page.php index f2b4668d..9db5d5f5 100644 --- a/core/module/page/page.php +++ b/core/module/page/page.php @@ -65,6 +65,8 @@ class page extends common true => 'Menu accessoire' ]; + public static $userProfils = []; + /** * Duplication @@ -439,6 +441,18 @@ class page extends common } } } + // Détermine le groupe selon que la page est une barre ou une page standard + $group = $this->getinput('pageEditBlock') !== 'bar' ? $this->getInput('pageEditGroup', helper::FILTER_INT) : 0; + + //Détermine le profil d'utilisateur en fonction du groupe sinon le groupe vaut 0 + $profil = 0; + if ( + $this->getinput('pageEditBlock') !== 'bar' || + $group === 1 || + $group === 2 + ) { + $profil = $this->getInput('pageEditProfil' . $group, helper::FILTER_INT); + } // Modifie la page ou en crée une nouvelle si l'id a changé $this->setData([ @@ -457,7 +471,8 @@ class page extends common 'modulePosition' => $this->getInput('pageModulePosition'), 'parentPageId' => $this->getInput('pageEditParentPageId'), 'position' => $position, - 'group' => $this->getinput('pageEditBlock') !== 'bar' ? $this->getInput('pageEditGroup', helper::FILTER_INT) : 0, + 'group' => $group, + 'profil' => $profil, 'targetBlank' => $this->getInput('pageEditTargetBlank', helper::FILTER_BOOLEAN), 'title' => $this->getInput('pageEditTitle', helper::FILTER_STRING_SHORT), 'shortTitle' => $this->getInput('pageEditShortTitle', helper::FILTER_STRING_SHORT, true), @@ -528,7 +543,20 @@ class page extends common self::$pagesBarId[$parentPageId] = $this->getData(['page', $parentPageId, 'title']); } } - + // Profils installés + // Profils disponibles + foreach ($this->getData(['profil']) as $profilId => $profilData) { + if ($profilId < self::GROUP_MEMBER) { + continue; + } + if ($profilId === self::GROUP_ADMIN) { + self::$userProfils[$profilId][self::GROUP_ADMIN] = $profilData['name']; + continue; + } + foreach ($profilData as $key => $value) { + self::$userProfils[$profilId][$key] = $profilData[$key]['name']; + } + } // Valeurs en sortie $this->addOutput([ 'title' => $this->getData(['page', $this->getUrl(2), 'title']), diff --git a/core/module/page/view/edit/edit.css b/core/module/page/view/edit/edit.css index f1b8a4c8..d7cb52f4 100755 --- a/core/module/page/view/edit/edit.css +++ b/core/module/page/view/edit/edit.css @@ -44,3 +44,7 @@ background-color: #00BFFF; } +#pageEditProfil1Wrapper, +#pageEditProfil2Wrapper { + padding: 0; +} \ No newline at end of file diff --git a/core/module/page/view/edit/edit.js.php b/core/module/page/view/edit/edit.js.php index 0f1def16..5bd3c44c 100644 --- a/core/module/page/view/edit/edit.js.php +++ b/core/module/page/view/edit/edit.js.php @@ -54,6 +54,16 @@ function protectModule() { */ $( document ).ready(function() { + // Changement de profil + $(".pageEditGroupProfil").hide(); + $("#pageEditGroupProfil" + $("#pageEditGroup").val()).show(); + + $("#pageEditGroup").on("change", function () { + $(".pageEditGroupProfil").hide(); + $("#pageEditGroupProfil" + $(this).val()).show(); + }); + + /** * Sélection des onglets */ diff --git a/core/module/page/view/edit/edit.php b/core/module/page/view/edit/edit.php index 16963ef9..ec095f4b 100644 --- a/core/module/page/view/edit/edit.php +++ b/core/module/page/view/edit/edit.php @@ -2,7 +2,8 @@
getUrl(2); ?> - getData(['page', $this->getUrl(2), 'moduleId']) === 'redirection' || 'code') $href = helper::baseUrl(); ?> + getData(['page', $this->getUrl(2), 'moduleId']) === 'redirection' || 'code') + $href = helper::baseUrl(); ?> 'buttonGrey', 'href' => $href, @@ -11,12 +12,12 @@
'https://doc.zwiicms.fr/edition-des-pages', - 'target' => '_blank', - 'value' => template::ico('help'), - 'class' => 'buttonHelp', - 'help' => 'Consulter l\'aide en ligne' - ]); */ ?> + 'href' => 'https://doc.zwiicms.fr/edition-des-pages', + 'target' => '_blank', + 'value' => template::ico('help'), + 'class' => 'buttonHelp', + 'help' => 'Consulter l\'aide en ligne' + ]); */?>
-

+

+ - getHierarchy($this->getUrl(2), false, true)) : ?> + getHierarchy($this->getUrl(2), false, true)): ?> $this->getData(['page', $this->getUrl(2), 'barLeft']) ]); ?> - + 'Barre latérale gauche :', 'selected' => $this->getData(['page', $this->getUrl(2), 'barLeft']) ]); ?> - getHierarchy($this->getUrl(2), false, true)) : ?> + getHierarchy($this->getUrl(2), false, true)): ?> $this->getData(['page', $this->getUrl(2), 'barRight']) ]); ?> - + 'Barre latérale droite :', 'selected' => $this->getData(['page', $this->getUrl(2), 'barRight']) @@ -345,7 +353,8 @@
-

+

+