Them footer WIP
This commit is contained in:
parent
e18aa2c49c
commit
8ecaeaf4e7
@ -63,7 +63,7 @@
|
||||
"Arrière plan des champs": "Fields background",
|
||||
"Arrondi des angles": "Rounding of angles",
|
||||
"Au centre": "Center",
|
||||
"Au dessus du site": "Above the site",
|
||||
"Au-dessus du site": "Above the site",
|
||||
"Au début": "At first",
|
||||
"Au milieu au centre": "In the middle in the center",
|
||||
"Au milieu à droite": "In the middle right",
|
||||
@ -161,7 +161,7 @@
|
||||
"Couleur visible en l'absence d'une image.<br />Le curseur horizontal règle le niveau de transparence. La couleur du texte est automatique.": "Visible color in the absence of an image. <br /> The horizontal cursor regulates the level of transparency. The color of the text is automatic.",
|
||||
"Couleurs": "Colors",
|
||||
"Créez un compte gratuit, recopier la clé , puis valider le formulaire avant de cliquer sur le bouton de génération": "Create a free account, copy the key, then validate the form before clicking the generation button",
|
||||
"Dans le site": "In the site",
|
||||
"Dans le site": "Into the site",
|
||||
"Dans quelle langue utiliserez-vous Zwii ?": "In which language will you use Zwii?",
|
||||
"Date": "Date",
|
||||
"Description": "Site description",
|
||||
|
@ -63,7 +63,7 @@
|
||||
"Arrière plan des champs": "Fondo de zona",
|
||||
"Arrondi des angles": "Redondeo de ángulos",
|
||||
"Au centre": "En el centro",
|
||||
"Au dessus du site": "Por encima del sitio",
|
||||
"Au-dessus du site": "Por encima del sitio",
|
||||
"Au début": "Al principio",
|
||||
"Au milieu au centre": "En el medio en el centro",
|
||||
"Au milieu à droite": "En el medio derecho",
|
||||
|
@ -63,7 +63,7 @@
|
||||
"Arrière plan des champs": "",
|
||||
"Arrondi des angles": "",
|
||||
"Au centre": "",
|
||||
"Au dessus du site": "",
|
||||
"Au-dessus du site": "",
|
||||
"Au début": "",
|
||||
"Au milieu au centre": "",
|
||||
"Au milieu à droite": "",
|
||||
|
@ -113,7 +113,7 @@ class theme extends common
|
||||
'400px' => '400px',
|
||||
];
|
||||
public static $headerPositions = [
|
||||
'body' => 'Au dessus du site',
|
||||
'body' => 'Au-dessus du site',
|
||||
'site' => 'Dans le site',
|
||||
'hide' => 'Cachée'
|
||||
];
|
||||
|
File diff suppressed because one or more lines are too long
@ -135,7 +135,7 @@
|
||||
<?php echo template::checkbox('themeFooterDisplayLegal', true, 'Mentions légales', [
|
||||
'checked' => $this->getData(['locale', 'legalPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displayLegal']),
|
||||
'disabled' => $this->getData(['locale', 'legalPageId']) === 'none' ? true : false,
|
||||
'help' => 'Option active si une page a été sélectionnée.'
|
||||
'help' => 'Sélectionnez une page pour activer'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col3">
|
||||
@ -149,7 +149,7 @@
|
||||
<?php echo template::checkbox('themeFooterDisplaySearch', true, 'Rechercher dans le site', [
|
||||
'checked' => $this->getData(['locale', 'searchPageId']) === 'none' ? false : $this->getData(['theme', 'footer', 'displaySearch']),
|
||||
'disabled' => $this->getData(['locale', 'searchPageId']) === 'none' ? true : false,
|
||||
'help' => 'Option active si une page a été sélectionnée.'
|
||||
'help' => 'Sélectionnez une page pour activer'
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col3">
|
||||
|
@ -82,8 +82,8 @@ $("input, select").on("change",function() {
|
||||
css += "#site{border-radius:" + $("#themeSiteRadius").val() + ";box-shadow:" + $("#themeSiteShadow").val() + " #212223}";
|
||||
|
||||
// Couleur ou image de fond
|
||||
var backgroundImage = <?php echo json_encode($this->getData(['theme','body','image'])); ?>;
|
||||
var backgroundcolor = <?php echo json_encode($this->getdata(['theme','body','backgroundColor'])); ?>;
|
||||
var backgroundImage = "<?php echo json_encode($this->getData(['theme','body','image'])); ?>";
|
||||
var backgroundcolor = "<?php echo json_encode($this->getdata(['theme','body','backgroundColor'])); ?>";
|
||||
if(backgroundImage ) {
|
||||
css += "div.bodybackground{background-image:url(" + window.location.origin + window.location.pathname + '/site/file/source/' + backgroundImage + ");background-repeat:" + $("#themeBodyImageRepeat").val() + ";background-position:" + $("#themeBodyImagePosition").val() + ";background-attachment:" + $("#themeBodyImageAttachment").val() + ";background-size:" + $("#themeBodyImageSize").val() + "}";
|
||||
css += "div.bodybackground{background-color:rgba(0,0,0,0);}";
|
||||
|
Loading…
Reference in New Issue
Block a user