[9.0.03] fin de fichiers - déplacement du header - barre sélection

This commit is contained in:
fredtempez 2019-03-07 23:23:32 +01:00
commit 92717302b8
16 changed files with 52 additions and 58 deletions

View File

@ -30,7 +30,7 @@ class common {
// Désactive l'update auto
// const ZWII_VERSION = '9.0.00-dev27';
// Numéro de version stable
const ZWII_VERSION = '9.0.02';
const ZWII_VERSION = '9.0.03';
public static $actions = [];
public static $coreModuleIds = [
@ -3180,5 +3180,5 @@ class template {
// Retourne le html
return $html;
}
}
?>

View File

@ -306,3 +306,4 @@ class configHelper extends helper {
}
}
?>

View File

@ -194,5 +194,5 @@ class install extends common {
'view' => 'update'
]);
}
}
?>

View File

@ -31,3 +31,4 @@ class maintenance extends common {
}
}
?>

View File

@ -46,7 +46,8 @@ class page extends common {
'8-4' => 'Page 2/3 - Barre latérale 1/3',
'3-9' => 'Barre latérale 1/4 - Page 3/4',
'9-3' => 'Page 3/4 - Barre latérale 1/4',
'3-6-3' => 'Barre latérale 1/4 - Page 1/2 - Barre latérale 1/4'
'3-6-3' => 'Barre latérale 1/4 - Page 1/2 - Barre latérale 1/4',
'bar' => 'Barre latérale'
];
/**
@ -243,7 +244,6 @@ class page extends common {
]);
// Barre renommée : changement le nom de la barre dans les pages mères
if ($this->getinput('pageEditBlock') === 'bar') {
echo '<pre>';
foreach ($this->getHierarchy() as $eachPageId=>$parentId) {
if ($this->getData(['page',$eachPageId,'barRight']) === $this->getUrl(2)) {
$this->setData(['page',$eachPageId,'barRight',$pageId]);
@ -315,3 +315,4 @@ class page extends common {
}
}
?>

View File

@ -33,7 +33,6 @@ $( document ).ready(function() {
if($("#pageEditModuleId").val() === "") {
$("#pageEditModuleConfig").addClass("disabled");
$("#pageEditContentContainer").slideDown();
$("#pageEditBlock").append('<option value="bar">Barre latérale</option>');
}
else {
$("#pageEditModuleConfig").removeClass("disabled");

View File

@ -30,3 +30,4 @@ class sitemap extends common {
}
}
?>

View File

@ -320,36 +320,26 @@ class theme extends common {
// Modification de la position du menu selon la position de la bannière
switch ($this->getInput('themeHeaderPosition')) {
case 'site' :
$this->setData(['theme', 'menu',
['position' => str_replace ('site','body',$this->getData(['theme','menu','position'])) ],
'backgroundColor' => $this->getData('themeMenuBackgroundColor'),
'font' => $this->getData('themeMenuFont'),
'fontSize' => $this->getData('themeMenuFontSize'),
'fontWeight' => $this->getData('themeMenuFontWeight'),
'height' => $this->getData('themeMenuHeight'),
'loginLink' => $this->getData('themeMenuLoginLink'),
'margin' => $this->getData('themeMenuMargin', helper::FILTER_BOOLEAN),
'textAlign' => $this->getData('themeMenuTextAlign'),
'textColor' => $this->getData('themeMenuTextColor'),
'textTransform' => $this->getData('themeMenuTextTransform'),
]);
$position = str_replace ('body','site',$this->getData(['theme','menu','position']));
break;
case 'body' :
$this->setData(['theme', 'menu',
['position' => str_replace ('body','site',$this->getData(['theme','menu','position'])) ],
'backgroundColor' => $this->getData('themeMenuBackgroundColor'),
'font' => $this->getData('themeMenuFont'),
'fontSize' => $this->getData('themeMenuFontSize'),
'fontWeight' => $this->getData('themeMenuFontWeight'),
'height' => $this->getData('themeMenuHeight'),
'loginLink' => $this->getData('themeMenuLoginLink'),
'margin' => $this->getData('themeMenuMargin', helper::FILTER_BOOLEAN),
'textAlign' => $this->getData('themeMenuTextAlign'),
'textColor' => $this->getData('themeMenuTextColor'),
'textTransform' => $this->getData('themeMenuTextTransform'),
]);
$position = str_replace ('site','body',$this->getData(['theme','menu','position']));
break;
}
$this->setData(['theme', 'menu', [
'backgroundColor' => $this->getData(['theme', 'menu', 'backgroundColor']),
'font' => $this->getData(['theme', 'menu', 'font']),
'fontSize' => $this->getData(['theme', 'menu', 'fontSize']),
'fontWeight' => $this->getData(['theme', 'menu', 'fontWeight']),
'height' => $this->getData(['theme', 'menu', 'height']),
'loginLink' => $this->getData(['theme', 'menu', 'loginLink']),
'margin' => $this->getData(['theme', 'menu', 'margin']),
'position' => $position,
'textAlign' => $this->getData(['theme', 'menu', 'textAlign']),
'textColor' => $this->getData(['theme', 'menu', 'textColor']),
'textTransform' => $this->getData(['theme','menu','textTransform']),
'fixed' => $this->getData(['theme','menu','fixed'])
]]);
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
@ -569,3 +559,4 @@ class theme extends common {
}
}
?>

View File

@ -425,5 +425,5 @@ class user extends common {
]);
}
}
}
?>

View File

@ -386,5 +386,5 @@ class blog extends common {
]);
}
}
}
?>

View File

@ -370,5 +370,5 @@ class form extends common {
'view' => 'index',
]);
}
}
?>

View File

@ -302,5 +302,5 @@ class galleriesHelper extends helper {
}
return $dirContent;
}
}
?>

View File

@ -236,5 +236,5 @@ class news extends common {
'view' => 'index'
]);
}
}
?>

View File

@ -70,5 +70,5 @@ class redirection extends common {
]);
}
}
}
?>