From 5ff0cfd3d18171d668f734cf088910343d4f9348 Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Thu, 15 Nov 2018 11:32:59 +0100 Subject: [PATCH 1/4] V8.4.4 : correction update footer positions --- core/core.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/core/core.php b/core/core.php index 6f367cbd..cb65bdd9 100644 --- a/core/core.php +++ b/core/core.php @@ -317,9 +317,9 @@ class common { 'text' => '', 'textAlign' => 'center', 'textColor' => 'rgba(33, 34, 35, 1)', - 'copyrightPosition' => '3', - 'textPosition' => '2', - 'socialsPosition' => '1' + 'copyrightPosition' => 'center', + 'textPosition' => 'center', + 'socialsPosition' => 'center' ], 'header' => [ 'backgroundColor' => 'rgba(255, 255, 255, 1)', @@ -908,6 +908,15 @@ class common { $this->setData(['core', 'dataVersion', 840]); $this->SaveData(); } + // Version 8.4.4 + if($this->getData(['core', 'dataVersion']) < 844) { + $this->setData(['theme','footer','socialsPosition','center']); + $this->setData(['theme','footer','textPosition','center']); + $this->setData(['theme','footer','copyrightPosition','center']); + $this->setData(['core', 'dataVersion', 844]); + $this->SaveData(); + } + } From 3eb4b9c01c2bfb398a9ea6ec6032235e74b792c2 Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Thu, 15 Nov 2018 11:36:50 +0100 Subject: [PATCH 2/4] v8.4.4 --- CHANGES.MD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.MD b/CHANGES.MD index f1f5bd63..dc601dcb 100644 --- a/CHANGES.MD +++ b/CHANGES.MD @@ -1,5 +1,9 @@ # ChangeLog +## Version 8.4.4 +* Correction : + - Valeur par défaut et d'update des éléments du footer dans les blocks + ## Version 8.4.3 * Correction : - URL incorrecte dans Metaimage From 70aacc48e75052f95ac23a371ee17981de0ce2c1 Mon Sep 17 00:00:00 2001 From: Fred <23246457+fredtempez@users.noreply.github.com> Date: Thu, 15 Nov 2018 11:37:11 +0100 Subject: [PATCH 3/4] Update core.php --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index cb65bdd9..e6850316 100644 --- a/core/core.php +++ b/core/core.php @@ -24,7 +24,7 @@ class common { const GROUP_MEMBER = 1; const GROUP_MODERATOR = 2; const GROUP_ADMIN = 3; - const ZWII_VERSION = '8.4.3'; + const ZWII_VERSION = '8.4.4'; public static $actions = []; public static $coreModuleIds = [ From eee165dea634478c60076605da14d0bedc1941b6 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Thu, 15 Nov 2018 18:24:39 +0100 Subject: [PATCH 4/4] v8.4.4 : update footer default position --- CHANGES.MD | 2 +- core/core.php | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CHANGES.MD b/CHANGES.MD index dc601dcb..a461b887 100644 --- a/CHANGES.MD +++ b/CHANGES.MD @@ -26,7 +26,7 @@ * Modifications : - Footer dans 3 blocs contenant dans l'ordre : Texte, Réseaux sociaux, Copyright - Pagination variable du nombres d'articles par page (news, blog et form) - - Position des modules Galerie et Form dans une page ; haut ; bas ou libre avec les doubles crochets insérés dans l'article [] (PeterRabbit) + - Position des modules Galerie et Form dans une page ; haut ; bas ou libre avec les doubles crochets insérés dans l'article [] - Prise en compte des balises OpenGraph obligatoires title , description, type et images - Modification de la position des boutons retour et éditer lors de l'affichage d'un article si connecté - Mise en forme de la composition des articles et des news diff --git a/core/core.php b/core/core.php index e6850316..4c74e661 100644 --- a/core/core.php +++ b/core/core.php @@ -318,8 +318,8 @@ class common { 'textAlign' => 'center', 'textColor' => 'rgba(33, 34, 35, 1)', 'copyrightPosition' => 'center', - 'textPosition' => 'center', - 'socialsPosition' => 'center' + 'textPosition' => 'hide', + 'socialsPosition' => 'hide' ], 'header' => [ 'backgroundColor' => 'rgba(255, 255, 255, 1)', @@ -1027,10 +1027,8 @@ class core extends common { } } $css .= 'header{background-size:' . $this->getData(['theme','header','imageContainer']).'}'; - $css .= 'header{background-color:' . $colors['normal'] . ';height:' . $this->getData(['theme', 'header', 'height']) . ';line-height:' . $this->getData(['theme', 'header', 'height']) . ';text-align:' . $this->getData(['theme', 'header', 'textAlign']) . '}'; - // Modif CrowueWeb pour la bannière + $css .= 'header{background-color:' . $colors['normal'] . ';height:' . $this->getData(['theme', 'header', 'height']) . ';line-height:' . $this->getData(['theme', 'header', 'height']) . ';text-align:' . $this->getData(['theme', 'header', 'textAlign']) . '}'; $css .= '@media (max-width: 767px) {header{height:' . $this->getData(['theme', 'header', 'height'])/2 . 'px;line-height:' . $this->getData(['theme', 'header', 'height'])/2 . 'px;}}'; - // Fin modif Croque Web if($themeHeaderImage = $this->getData(['theme', 'header', 'image'])) { $css .= 'header{background-image:url("../file/source/' . $themeHeaderImage . '");background-position:' . $this->getData(['theme', 'header', 'imagePosition']) . ';background-repeat:' . $this->getData(['theme', 'header', 'imageRepeat']) . '}'; }