From 5b440c87009bc44149e7503f2cba02faf08bc743 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Fri, 3 Apr 2020 15:22:44 +0200 Subject: [PATCH] [10.0.048] bouton moduile dans barre admin --- core/core.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index 66bc8877..85b58d80 100644 --- a/core/core.php +++ b/core/core.php @@ -33,7 +33,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '10.0.047'; + const ZWII_VERSION = '10.0.048'; const ZWII_UPDATE_CHANNEL = "v10"; public static $actions = []; @@ -2275,6 +2275,9 @@ class layout extends common { OR $this->getUrl(0) === '' ) { $leftItems .= '
  • ' . template::ico('pencil') . '
  • '; + if ($this->getData(['page', $this->getUrl(),'moduleId'])) { + $leftItems .= '
  • ' . template::ico('gear') . '
  • '; + } $leftItems .= '
  • ' . template::ico('trash') . '
  • '; } }