[9.2.10] Changement d'un nom de clé
This commit is contained in:
parent
d5be2e866c
commit
f5a3aae819
@ -958,11 +958,19 @@ class common {
|
|||||||
}
|
}
|
||||||
// Version 9.2.10
|
// Version 9.2.10
|
||||||
if($this->getData(['core', 'dataVersion']) < 9210) {
|
if($this->getData(['core', 'dataVersion']) < 9210) {
|
||||||
|
|
||||||
// Utile pour l'installation d'un backup sur un autre serveur
|
// Utile pour l'installation d'un backup sur un autre serveur
|
||||||
$this->setData(['core', 'baseUrl', helper::baseUrl(false,false) ]);
|
$this->setData(['core', 'baseUrl', helper::baseUrl(false,false) ]);
|
||||||
|
|
||||||
// Préparation des clés de légendes pour la v10
|
// Suppression d'une option de hauteur de la bannière
|
||||||
|
if ($this->getData(['theme', 'header','height']) === 'none') {
|
||||||
|
$this->setData(['theme', 'header','height','150px']);
|
||||||
|
}
|
||||||
|
// Changer le nom de la clé linkHome -> linkHomePage
|
||||||
|
$this->setdata(['theme','header','linkHomePage',$this->getData(['theme','header','linkHome'])]);
|
||||||
|
$this->deleteData(['theme','header','linkHome']);
|
||||||
|
|
||||||
|
// Préparation des clés de légendes pour la v10
|
||||||
// Construire une liste plate de parents et d'enfants
|
// Construire une liste plate de parents et d'enfants
|
||||||
|
|
||||||
foreach ($this->getHierarchy(null,null,null) as $parentKey=>$parentValue) {
|
foreach ($this->getHierarchy(null,null,null) as $parentKey=>$parentValue) {
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
<!-- Bannière dans le fond du site -->
|
<!-- Bannière dans le fond du site -->
|
||||||
<header>
|
<header>
|
||||||
<?php
|
<?php
|
||||||
if ($this->getData(['theme','header','linkHome'])){
|
if ($this->getData(['theme','header','linkHomePage'])){
|
||||||
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
||||||
<?php if(
|
<?php if(
|
||||||
$this->getData(['theme', 'header', 'textHide']) === false
|
$this->getData(['theme', 'header', 'textHide']) === false
|
||||||
@ -66,7 +66,7 @@
|
|||||||
</div> <!--fin container -->
|
</div> <!--fin container -->
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php
|
<?php
|
||||||
if ($this->getData(['theme','header','linkHome'])){echo "</a>";}
|
if ($this->getData(['theme','header','linkHomePage'])){echo "</a>";}
|
||||||
?>
|
?>
|
||||||
</header>
|
</header>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@ -97,7 +97,7 @@
|
|||||||
): ?>
|
): ?>
|
||||||
<!-- Bannière dans le site -->
|
<!-- Bannière dans le site -->
|
||||||
<?php
|
<?php
|
||||||
if ($this->getData(['theme','header','linkHome'])){
|
if ($this->getData(['theme','header','linkHomePage'])){
|
||||||
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
||||||
<header <?php if($this->getData(['theme', 'header', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
<header <?php if($this->getData(['theme', 'header', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
||||||
<?php if(
|
<?php if(
|
||||||
@ -115,7 +115,7 @@
|
|||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</header>
|
</header>
|
||||||
<?php
|
<?php
|
||||||
if ($this->getData(['theme','header','linkHome'])){echo "</a>";} ?>
|
if ($this->getData(['theme','header','linkHomePage'])){echo "</a>";} ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if(
|
<?php if(
|
||||||
$this->getData(['theme', 'menu', 'position']) === 'site-second' ||
|
$this->getData(['theme', 'menu', 'position']) === 'site-second' ||
|
||||||
|
@ -460,7 +460,7 @@ class install extends common {
|
|||||||
'textColor' => 'rgba(33, 34, 35, 1)',
|
'textColor' => 'rgba(33, 34, 35, 1)',
|
||||||
'textHide' => true,
|
'textHide' => true,
|
||||||
'textTransform' => 'none',
|
'textTransform' => 'none',
|
||||||
'linkHome' => true,
|
'linkHomePage' => true,
|
||||||
'imageContainer' => 'auto'
|
'imageContainer' => 'auto'
|
||||||
],
|
],
|
||||||
'link' => [
|
'link' => [
|
||||||
|
@ -366,7 +366,7 @@ class theme extends common {
|
|||||||
'textAlign' => $this->getInput('themeHeaderTextAlign'),
|
'textAlign' => $this->getInput('themeHeaderTextAlign'),
|
||||||
'textColor' => $this->getInput('themeHeaderTextColor'),
|
'textColor' => $this->getInput('themeHeaderTextColor'),
|
||||||
'textHide' => $this->getInput('themeHeaderTextHide', helper::FILTER_BOOLEAN),
|
'textHide' => $this->getInput('themeHeaderTextHide', helper::FILTER_BOOLEAN),
|
||||||
'linkHome' => $this->getInput('themeHeaderlinkHome',helper::FILTER_BOOLEAN),
|
'linkHomePage' => $this->getInput('themeHeaderlinkHomePage',helper::FILTER_BOOLEAN),
|
||||||
'imageContainer' => $this->getInput('themeHeaderImageContainer')
|
'imageContainer' => $this->getInput('themeHeaderImageContainer')
|
||||||
]]);
|
]]);
|
||||||
// Modification de la position du menu selon la position de la bannière
|
// Modification de la position du menu selon la position de la bannière
|
||||||
|
@ -81,8 +81,8 @@
|
|||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div id="themeHeaderShow" class="col6">
|
<div id="themeHeaderShow" class="col6">
|
||||||
<?php echo template::checkbox('themeHeaderlinkHome', true, 'Bannière cliquable', [
|
<?php echo template::checkbox('themeHeaderlinkHomePage', true, 'Bannière cliquable', [
|
||||||
'checked' => $this->getData(['theme', 'header', 'linkHome'])
|
'checked' => $this->getData(['theme', 'header', 'linkHomePage'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user