diff --git a/CHANGES.MD b/CHANGES.MD index f1f5bd63..a461b887 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 @@ -22,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 f796c3f0..d345a6e9 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 = [ @@ -317,9 +317,9 @@ class common { 'text' => '', 'textAlign' => 'center', 'textColor' => 'rgba(33, 34, 35, 1)', - 'copyrightPosition' => '3', - 'textPosition' => '2', - 'socialsPosition' => '1' + 'copyrightPosition' => 'center', + 'textPosition' => 'hide', + 'socialsPosition' => 'hide' ], 'header' => [ 'backgroundColor' => 'rgba(255, 255, 255, 1)', @@ -909,6 +909,15 @@ class common { $this->SaveData(); } + // Version 8.4.4 + if($this->getData(['core', 'dataVersion']) < 844) { + $this->setData(['theme','footer','socialsPosition','center']); + $this->setData(['theme','footer','textPosition','none']); + $this->setData(['theme','footer','copyrightPosition','none']); + $this->setData(['core', 'dataVersion', 844]); + $this->SaveData(); + } + } } @@ -1018,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']) . '}'; }