id dans footer et gen screenshot (8.5.3)

This commit is contained in:
fredtempez 2018-12-30 14:23:08 +01:00
parent 176ff461d4
commit 78ef2cf511
3 changed files with 20 additions and 16 deletions

View File

@ -140,8 +140,8 @@
<footer <?php if($this->getData(['theme', 'footer', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>> <footer <?php if($this->getData(['theme', 'footer', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
<div class="container"> <div class="container">
<div class="row"> <div class="row" id="footersite">
<div class="col4" id="siteLeft"> <!-- bloc gauche --> <div class="col4" id="footersiteLeft"> <!-- bloc gauche -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'left') { if($this->getData(['theme', 'footer', 'textPosition']) === 'left') {
$layout->showFooterText();} $layout->showFooterText();}
@ -155,7 +155,7 @@
$layout->showCopyright(); } $layout->showCopyright(); }
?> ?>
</div> </div>
<div class="col4" id="siteCenter"> <!-- bloc central --> <div class="col4" id="footersiteCenter"> <!-- bloc central -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'center') { if($this->getData(['theme', 'footer', 'textPosition']) === 'center') {
$layout->showFooterText(); } $layout->showFooterText(); }
@ -169,7 +169,7 @@
$layout->showCopyright(); } $layout->showCopyright(); }
?> ?>
</div> </div>
<div class="col4" id="siteRight"> <!-- bloc droite --> <div class="col4" id="footersiteRight"> <!-- bloc droite -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'right') { if($this->getData(['theme', 'footer', 'textPosition']) === 'right') {
$layout->showFooterText(); } $layout->showFooterText(); }
@ -192,8 +192,8 @@
<!-- Pied de page dans le fond du site --> <!-- Pied de page dans le fond du site -->
<footer> <footer>
<div class="container-large"> <div class="container-large">
<div class="row"> <div class="row" id="footerbody">
<div class="col4" id="bodyLeft"> <!-- bloc gauche --> <div class="col4" id="footerbodyLeft"> <!-- bloc gauche -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'left') { if($this->getData(['theme', 'footer', 'textPosition']) === 'left') {
$layout->showFooterText(); } $layout->showFooterText(); }
@ -207,7 +207,7 @@
$layout->showCopyright(); } $layout->showCopyright(); }
?> ?>
</div> </div>
<div class="col4" id="bodyCenter"> <!-- bloc central --> <div class="col4" id="footerbodyCenter"> <!-- bloc central -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'center') { if($this->getData(['theme', 'footer', 'textPosition']) === 'center') {
$layout->showFooterText(); } $layout->showFooterText(); }
@ -221,7 +221,7 @@
$layout->showCopyright(); } $layout->showCopyright(); }
?> ?>
</div> </div>
<div class="col4" id="bodyRight"> <!-- bloc droite --> <div class="col4" id="footerbodyRight"> <!-- bloc droite -->
<?php <?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'right') { if($this->getData(['theme', 'footer', 'textPosition']) === 'right') {
$layout->showFooterText(); } $layout->showFooterText(); }

View File

@ -268,6 +268,10 @@ class config extends common {
'state' => true 'state' => true
]); ]);
} }
// Initialisation du screen
if (!file_exists('site/file/source/screenshot.png')) {
$this->configMetaImage();
}
// Valeurs en sortie // Valeurs en sortie
$this->addOutput([ $this->addOutput([
'title' => 'Configuration', 'title' => 'Configuration',

View File

@ -40,23 +40,23 @@ nav a.active {
} }
/* Bas de page */ /* Bas de page */
footer { #footersite, #footerbody {
} }
/* Liens du bas de page */ /* Liens du bas de page */
footer a { #footersite, #footerbody a {
} }
/* Réseaux sociaux dans le bas de page */ /* footer bloc gauche */
#footerSocials { #footersiteLeft, #footerbodyLeft {
} }
/* Texte libre dans le bas de page */ /* footer bloc central */
#footerText { #footersiteCenter, #footerbodyCenter {
} }
/* Copyright dans le bas de page */ /* footer bloc droite */
#footerCopyright { #footersiteRight, #footerbodyRight {
} }
/** /**