[9.2.0.dev] aperçu des positions du footer
This commit is contained in:
parent
15c9ac7e5d
commit
f05922b090
@ -32,7 +32,7 @@ class common {
|
|||||||
const TEMP_DIR = 'site/tmp/';
|
const TEMP_DIR = 'site/tmp/';
|
||||||
|
|
||||||
// Numéro de version
|
// Numéro de version
|
||||||
const ZWII_VERSION = '9.1.14.dev';
|
const ZWII_VERSION = '9.2.0.dev';
|
||||||
|
|
||||||
public static $actions = [];
|
public static $actions = [];
|
||||||
public static $coreModuleIds = [
|
public static $coreModuleIds = [
|
||||||
|
@ -73,13 +73,13 @@ class theme extends common {
|
|||||||
'center' => 'Affiché' ],
|
'center' => 'Affiché' ],
|
||||||
2 => [
|
2 => [
|
||||||
'hide' => 'Masqué',
|
'hide' => 'Masqué',
|
||||||
'left' => 'Bloc Gauche',
|
'left' => 'A Gauche',
|
||||||
'right' => 'Bloc Droite' ],
|
'right' => 'A Droite' ],
|
||||||
3 => [
|
3 => [
|
||||||
'hide' => 'Masqué',
|
'hide' => 'Masqué',
|
||||||
'left' => 'Bloc Gauche',
|
'left' => 'A Gauche',
|
||||||
'center' => 'Bloc Central',
|
'center' => 'Au Central',
|
||||||
'right' => 'Bloc Droite' ],
|
'right' => 'A Droite' ],
|
||||||
4 => [
|
4 => [
|
||||||
'hide' => 'Masqué',
|
'hide' => 'Masqué',
|
||||||
'left' => 'En haut',
|
'left' => 'En haut',
|
||||||
|
@ -119,9 +119,9 @@ $(".themeFooterContent").on("change",function() {
|
|||||||
$("#themeFooterTemplate").on("change",function() {
|
$("#themeFooterTemplate").on("change",function() {
|
||||||
// Nettoyage des sélecteurs des contenus
|
// Nettoyage des sélecteurs des contenus
|
||||||
var newOptions = {
|
var newOptions = {
|
||||||
4: {'hide' : 'Masqué', 'top' : 'Bloc en haut', 'middle' : 'Bloc au milieu', 'bottom' : 'Bloc inférieur'} ,
|
4: {'hide' : 'Masqué', 'left' : 'En haut', 'center' : 'Au milieu', 'right' : 'En bas'} ,
|
||||||
3: {'hide': 'Masqué', 'left': 'Bloc Gauche', 'center': 'Bloc Central', 'right': 'Bloc Droite'} ,
|
3: {'hide': 'Masqué', 'left': 'A Gauche', 'center': 'Au Central', 'right': 'A Droite'} ,
|
||||||
2: {'hide': 'Masqué', 'left': 'Bloc Gauche', 'right': 'Bloc Droite'} ,
|
2: {'hide': 'Masqué', 'left': 'A Gauche', 'right': 'A Droite'} ,
|
||||||
1: {'hide': 'Masqué', 'center': 'Affiché'}
|
1: {'hide': 'Masqué', 'center': 'Affiché'}
|
||||||
};
|
};
|
||||||
var $el = $(".themeFooterContent");
|
var $el = $(".themeFooterContent");
|
||||||
@ -136,57 +136,27 @@ $("#themeFooterTemplate").on("change",function() {
|
|||||||
$("#footerCopyright").hide();
|
$("#footerCopyright").hide();
|
||||||
$("#footerText").hide();
|
$("#footerText").hide();
|
||||||
$("#footerSocials").hide();
|
$("#footerSocials").hide();
|
||||||
|
// Dimension des blocks
|
||||||
switch($("#themeFooterTemplate").val()) {
|
switch($("#themeFooterTemplate").val()) {
|
||||||
case "1":
|
case "1":
|
||||||
$("#footer" + position + "Left").css("display","none");
|
$("#footer" + position + "Left").css("display","none");
|
||||||
$("#footer" + position + "Center").css("display","");
|
$("#footer" + position + "Center").removeAttr('class').addClass("col12").css("display","");
|
||||||
$("#footer" + position + "Right").css("display","none");
|
$("#footer" + position + "Right").css("display","none");
|
||||||
// Dimension du bloc
|
|
||||||
$("#footer" + position + "Center").removeAttr('class');
|
|
||||||
$("#footer" + position + "Center").addClass("col12");
|
|
||||||
break;
|
break;
|
||||||
case "2":
|
case "2":
|
||||||
$("#footer" + position + "Left").css("display","");
|
$("#footer" + position + "Left").removeAttr('class').addClass('col6').css("display","");
|
||||||
$("#footer" + position + "Center").css("display","none");
|
$("#footer" + position + "Center").css("display","none").removeAttr('class');
|
||||||
$("#footer" + position + "Right").css("display","");
|
$("#footer" + position + "Right").removeAttr('class').addClass('col6').css("display","");
|
||||||
// Dimension de blocs
|
|
||||||
$("#footer" + position + "Left").removeAttr('class');
|
|
||||||
$("#footer" + position + "Center").removeAttr('class');
|
|
||||||
$("#footer" + position + "Right").removeAttr('class');
|
|
||||||
|
|
||||||
$("#footer" + position + "Left").addClass('col6');
|
|
||||||
$("#footer" + position + "Right").addClass('col6');
|
|
||||||
break;
|
break;
|
||||||
case "3":
|
case "3":
|
||||||
$("#footer" + position + "Left").css("display","");
|
$("#footer" + position + "Left").removeAttr('class').addClass('col4').css("display","");
|
||||||
$("#footer" + position + "Center").css("display","");
|
$("#footer" + position + "Center").removeAttr('class').addClass('col4').css("display","");
|
||||||
$("#footer" + position + "Right").css("display","");
|
$("#footer" + position + "Right").removeAttr('class').addClass('col4').css("display","");
|
||||||
// Dimension de blocs
|
|
||||||
$("#footer" + position + "Left").removeAttr('class');
|
|
||||||
$("#footer" + position + "Right").removeAttr('class');
|
|
||||||
$("#footer" + position + "center").removeAttr('class');
|
|
||||||
$("#footer" + position + "Left").addClass('col4');
|
|
||||||
$("#footer" + position + "Center").addClass('col4');
|
|
||||||
$("#footer" + position + "Right").addClass('col4');
|
|
||||||
break;
|
break;
|
||||||
case "4":
|
case "4":
|
||||||
$("#footer" + position + "Left").css("display","");
|
$("#footer" + position + "Left").removeAttr('class').addClass('col12').css("display","");
|
||||||
$("#footer" + position + "Left").removeAttr('class');
|
$("#footer" + position + "Center").removeAttr('class').addClass('col12').css("display","");
|
||||||
$("#footer" + position + "Left").addClass('col12');
|
$("#footer" + position + "Right").removeAttr('class').addClass('col12').css("display","");
|
||||||
|
|
||||||
$("#footer" + position + "Center").css("display","");
|
|
||||||
$("#footer" + position + "Center").removeAttr('class');
|
|
||||||
$("#footer" + position + "Center").addClass('col12');
|
|
||||||
|
|
||||||
$("#footer" + position + "Right").css("display","");
|
|
||||||
$("#footer" + position + "Right").removeAttr('class');
|
|
||||||
$("#footer" + position + "Right").addClass('col12');
|
|
||||||
|
|
||||||
// Ordre des blocs du haut vers le bas:
|
|
||||||
// $("#footer" + position + "Left").css("footersite > " + "#footer" + position + "Left","order: " + $("#footer" + position + "Left").val() );
|
|
||||||
// $("#footer" + position + "Center").css("footersite > " + "#footer" + position + "Center","order: " + $("#footer" + position + "Left").val() );
|
|
||||||
//$("#footer" + position + "Right").css("footersite > "+ "#footer" + position + "Right","order: " + $("#footer" + position + "Left").val() );
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user