2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* This file is part of Zwii.
|
|
|
|
*
|
|
|
|
* For full copyright and license information, please see the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* @author Rémi Jean <remi.jean@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
|
|
|
* @license GNU General Public License, version 3
|
2019-05-13 20:38:07 +02:00
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2018-2019, Frédéric Tempez
|
2018-04-02 08:29:19 +02:00
|
|
|
* @link http://zwiicms.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Aperçu en direct
|
|
|
|
*/
|
|
|
|
$("input, select").on("change", function() {
|
2019-03-19 06:59:28 +01:00
|
|
|
// Import des polices de caractères
|
|
|
|
var footerFont = $("#themeFooterFont").val();
|
|
|
|
var css = "@import url('https://fonts.googleapis.com/css?family=" + footerFont + "');";
|
2018-04-02 08:29:19 +02:00
|
|
|
// Couleurs du pied de page
|
|
|
|
var colors = core.colorVariants($("#themeFooterBackgroundColor").val());
|
|
|
|
var textColor = $("#themeFooterTextColor").val();
|
|
|
|
var css = "footer{background-color:" + colors.normal + ";color:" + textColor + "}";
|
|
|
|
css += "footer a{color:" + textColor + "}";
|
|
|
|
// Hauteur du pied de page
|
2019-06-19 03:28:52 +02:00
|
|
|
css += "footer .container > #footersiteLeft, #footersiteCenter, #footersiteRight {padding:" + $("#themeFooterHeight").val() + " 0}";
|
2019-03-05 14:14:40 +01:00
|
|
|
//css += "footer .container > div{padding:0}";
|
2019-06-19 03:28:52 +02:00
|
|
|
css += "footer .container-large > #footersiteLeft, #footersiteCenter, #footersiteRight {padding:" + $("#themeFooterHeight").val() + " 0}";
|
2019-03-05 14:14:40 +01:00
|
|
|
//css += "footer .container-large > div{padding:0}";
|
2018-04-02 08:29:19 +02:00
|
|
|
// Alignement du contenu
|
|
|
|
css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}";
|
|
|
|
css += "#footerText{text-align:" + $("#themeFooterTextAlign").val() + "}";
|
|
|
|
css += "#footerCopyright{text-align:" + $("#themeFooterCopyrightAlign").val() + "}";
|
2019-03-19 06:59:28 +01:00
|
|
|
// Taille, couleur, épaisseur et capitalisation du titre de la bannière
|
|
|
|
css += "footer span{color:" + $("#themeFooterTextColor").val() + ";font-family:'" + footerFont.replace(/\+/g, " ") + "',sans-serif;font-weight:" + $("#themeFooterFontWeight").val() + ";font-size:" + $("#themeFooterFontSize").val() + ";text-transform:" + $("#themeFooterTextTransform").val() + "}";
|
2018-04-02 08:29:19 +02:00
|
|
|
// Marge
|
|
|
|
if($("#themeFooterMargin").is(":checked")) {
|
|
|
|
css += 'footer{margin:0 20px 20px}';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
css += 'footer{margin:0}';
|
|
|
|
}
|
|
|
|
// Ajout du css au DOM
|
|
|
|
$("#themePreview").remove();
|
|
|
|
$("<style>")
|
|
|
|
.attr("type", "text/css")
|
|
|
|
.attr("id", "themePreview")
|
|
|
|
.text(css)
|
2019-03-20 20:05:03 +01:00
|
|
|
.appendTo("footer");
|
2018-04-02 08:29:19 +02:00
|
|
|
// Position du pied de page
|
|
|
|
switch($("#themeFooterPosition").val()) {
|
|
|
|
case 'hide':
|
|
|
|
$("footer").hide();
|
|
|
|
break;
|
|
|
|
case 'site':
|
|
|
|
$("footer").show().appendTo("#site");
|
|
|
|
break;
|
|
|
|
case 'body':
|
|
|
|
$("footer").show().appendTo("body");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2018-09-23 18:55:08 +02:00
|
|
|
|
2019-01-19 23:37:36 +01:00
|
|
|
// Position dans les blocs
|
2018-09-23 18:55:08 +02:00
|
|
|
// Bloc texte personnalisé
|
2018-09-27 06:53:33 +02:00
|
|
|
$("#themeFooterForm").on("change",function() {
|
2018-09-23 18:55:08 +02:00
|
|
|
switch($("#themeFooterTextPosition").val()) {
|
2019-06-18 20:08:04 +02:00
|
|
|
case "hide":
|
2018-09-23 18:55:08 +02:00
|
|
|
$("#footerText").hide();
|
|
|
|
break;
|
2019-06-18 20:08:04 +02:00
|
|
|
case "left":
|
2019-01-19 23:37:36 +01:00
|
|
|
$("#footerText").show().appendTo("#footerbodyLeft");
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerText").show().appendTo("#footersiteLeft");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
2019-06-18 20:08:04 +02:00
|
|
|
case "center":
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerText").show().appendTo("#footerbodyCenter");
|
|
|
|
$("#footerText").show().appendTo("#footersiteCenter");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
2019-06-18 20:08:04 +02:00
|
|
|
case "right":
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerText").show().appendTo("#footerbodyRight");
|
|
|
|
$("#footerText").show().appendTo("#footersiteRight");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch($("#themeFooterSocialsPosition").val()) {
|
|
|
|
case 'hide':
|
|
|
|
$("#footerSocials").hide();
|
|
|
|
break;
|
|
|
|
case 'left':
|
2019-01-19 23:37:36 +01:00
|
|
|
$("#footerSocials").show().appendTo("#footerbodyLeft");
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerSocials").show().appendTo("#footersiteLeft");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
case 'center':
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerSocials").show().appendTo("#footerbodyCenter");
|
|
|
|
$("#footerSocials").show().appendTo("#footersiteCenter");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
case 'right':
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerSocials").show().appendTo("#footerbodyRight");
|
|
|
|
$("#footerSocials").show().appendTo("#footersiteRight");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
}
|
2018-09-27 06:55:23 +02:00
|
|
|
switch($("#themeFooterCopyrightPosition").val()) {
|
2018-09-23 18:55:08 +02:00
|
|
|
case 'hide':
|
|
|
|
$("#footerCopyright").hide();
|
|
|
|
break;
|
|
|
|
case 'left':
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerCopyright").show().appendTo("#footerbodyLeft");
|
|
|
|
$("#footerCopyright").show().appendTo("#footersiteLeft");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
case 'center':
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerCopyright").show().appendTo("#footerbodyCenter");
|
|
|
|
$("#footerCopyright").show().appendTo("#footersiteCenter");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
case 'right':
|
2018-12-30 18:51:31 +01:00
|
|
|
$("#footerCopyright").show().appendTo("#footerbodyRight");
|
|
|
|
$("#footerCopyright").show().appendTo("#footersiteRight");
|
2018-09-23 18:55:08 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
// Fin Position dans les blocs
|
|
|
|
|
2019-06-18 20:08:04 +02:00
|
|
|
// Liste de position dans les blocs
|
|
|
|
|
|
|
|
//3 colonnes
|
|
|
|
var newOptions = {
|
|
|
|
3: {'hide': 'Masqué', 'left': 'Bloc Gauche', 'center': 'Bloc Central', 'right': 'Bloc Droite'} ,
|
|
|
|
2: {'hide': 'Masqué', 'left': 'Bloc Gauche', 'right': 'Bloc Droite'} ,
|
|
|
|
1: {'hide': 'Masqué', 'center': 'Affiché'}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Modification de la mise en page
|
|
|
|
$("#themeFooterTemplate").on("change",function() {
|
|
|
|
// Nettoyage des sélecteurs des contenus
|
|
|
|
|
|
|
|
var $el = $(".themeFooterPosition");
|
|
|
|
$el.empty();
|
|
|
|
// Eléments des position de contenus
|
|
|
|
$.each(newOptions[$("#themeFooterTemplate").val()], function(key,value) {
|
|
|
|
$el.append($("<option></option>")
|
|
|
|
.attr("value", key).text(value));
|
|
|
|
});
|
|
|
|
switch($("#themeFooterTemplate").val()) {
|
|
|
|
case "1":
|
|
|
|
$("#footersiteLeft").css("display", "none");
|
|
|
|
$("#footersiteCenter").css("display", "");
|
|
|
|
$("#footersiteRight").css("display", "none");
|
|
|
|
// Dimension du bloc
|
|
|
|
$("#footersiteCenter").removeAttr('class');;
|
|
|
|
$("#footersiteCenter").addClass("col12");
|
|
|
|
break;
|
|
|
|
case "2":
|
|
|
|
$("#footersiteLeft").css("display", "");
|
|
|
|
$("#footersiteCenter").css("display", "none");
|
|
|
|
$("#footersiteRight").css("display", "");
|
|
|
|
// Dimension de blocs
|
|
|
|
$("#footersiteLeft").removeAttr('class');
|
|
|
|
$("#footersiteRight").removeAttr('class');
|
|
|
|
$("#footersiteLeft").addClass('col6');
|
|
|
|
$("#footersiteRight").addClass('col6');
|
|
|
|
break;
|
|
|
|
case "3":
|
|
|
|
$("#footersiteLeft").css("display", "");
|
|
|
|
$("#footersiteCenter").css("display", "");
|
|
|
|
$("#footersiteRight").css("display", "");
|
|
|
|
// Dimensions des blocs
|
|
|
|
$("#footersiteLeft").removeAttr('class');
|
|
|
|
$("#footersiteRight").removeAttr('class');
|
|
|
|
$("#footersitecenter").removeAttr('class');
|
|
|
|
$("#footersiteLeft").addClass('col4');
|
|
|
|
$("#footersiteCenter").addClass('col4');
|
|
|
|
$("#footersiteRight").addClass('col4');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-09-23 18:55:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-02 08:29:19 +02:00
|
|
|
// Lien de connexion
|
|
|
|
$("#themeFooterLoginLink").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#footerLoginLink").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#footerLoginLink").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
2019-05-02 13:21:48 +02:00
|
|
|
|
|
|
|
// Numéro de version
|
|
|
|
$("#themefooterDisplayVersion").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#footerDisplayVersion").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#footerDisplayVersion").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
|
|
|
|
// Numéro de version
|
|
|
|
$("#themefooterDisplayCopyright").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#footerDisplayCopyright").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#footerDisplayCopyright").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
|
|
|
|
// Site Map
|
|
|
|
$("#themefooterDisplaySiteMap").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#footerDisplaySiteMap").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#footerDisplaySiteMap").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
|
|
|
|
|
2019-01-19 23:37:36 +01:00
|
|
|
|
2019-04-09 10:21:01 +02:00
|
|
|
// Numéro de version
|
2019-04-09 10:05:38 +02:00
|
|
|
$("#themefooterDisplayVersion").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#footerDisplayVersion").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#footerDisplayVersion").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
|
|
|
|
|
2018-04-02 08:29:19 +02:00
|
|
|
// Aperçu du texte
|
|
|
|
$("#themeFooterText").on("change keydown keyup", function() {
|
|
|
|
$("#footerText").html($(this).val());
|
|
|
|
});
|
2019-01-19 23:37:36 +01:00
|
|
|
|
2018-04-02 08:29:19 +02:00
|
|
|
// Affiche / Cache les options de la position
|
|
|
|
$("#themeFooterPosition").on("change", function() {
|
|
|
|
if($(this).val() === 'site') {
|
|
|
|
$("#themeFooterPositionOptions").slideDown();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#themeFooterPositionOptions").slideUp(function() {
|
|
|
|
$("#themeFooterMargin").prop("checked", false).trigger("change");
|
|
|
|
});
|
|
|
|
}
|
2019-05-02 13:21:48 +02:00
|
|
|
}).trigger("change");
|