[9.2.03] ok avec main
This commit is contained in:
parent
dfd991cc05
commit
32fa56a580
@ -3,7 +3,8 @@
|
|||||||
## Version 9.2.03
|
## Version 9.2.03
|
||||||
- Corrections :
|
- Corrections :
|
||||||
- Menu fixe en dehors du site : impossibilité de sélectionner un élément sous un sous-menu.
|
- Menu fixe en dehors du site : impossibilité de sélectionner un élément sous un sous-menu.
|
||||||
- Modification de structure du fichier main.php
|
- Module News : pagination en-dehors des barres latérales.
|
||||||
|
- Syntaxe du fichier main.php
|
||||||
|
|
||||||
## Version 9.2.02
|
## Version 9.2.02
|
||||||
- Correction :
|
- Correction :
|
||||||
|
@ -40,8 +40,11 @@
|
|||||||
?>
|
?>
|
||||||
>
|
>
|
||||||
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
||||||
<div id="menu" class="<?php if($this->getData(['theme', 'menu', 'position']) === 'top'){echo 'container-large';}else{echo'container';}
|
<div id="menu" class="
|
||||||
?>"><?php $layout->showMenu(); ?>
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'top'){echo 'container-large';}else{echo'container';}
|
||||||
|
?>">
|
||||||
|
|
||||||
|
<?php $layout->showMenu(); ?>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@ -51,7 +54,7 @@
|
|||||||
<?php
|
<?php
|
||||||
if ($this->getData(['theme','header','linkHome'])){
|
if ($this->getData(['theme','header','linkHome'])){
|
||||||
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
|
||||||
// Affiche toujours le titre de la bannière pour l'édition du thème
|
// Affiche toujours le titre de la bannière pour l'édition du thème
|
||||||
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
||||||
@ -137,8 +140,10 @@
|
|||||||
$blocks = explode('-',$this->getData(['page',$this->getUrl(0),'block']));
|
$blocks = explode('-',$this->getData(['page',$this->getUrl(0),'block']));
|
||||||
// recherche si la seconde URL fait référence à un article pour appliquer les barres
|
// recherche si la seconde URL fait référence à un article pour appliquer les barres
|
||||||
$blogItem = false;
|
$blogItem = false;
|
||||||
|
$newsItem = false;
|
||||||
if (is_array ($this->getdata(['module',$this->getData(['page', $this->getUrl(0), 'moduleId'])]))) {
|
if (is_array ($this->getdata(['module',$this->getData(['page', $this->getUrl(0), 'moduleId'])]))) {
|
||||||
$blogItem = array_key_exists($this->getUrl(1),$this->getdata(['module',$this->getData(['page', $this->getUrl(0), 'moduleId'])]));
|
$blogItem = array_key_exists($this->getUrl(1),$this->getdata(['module',$this->getData(['page', $this->getUrl(0), 'moduleId'])]));
|
||||||
|
$newsItem = is_numeric($this->getUrl(1)) ;
|
||||||
}
|
}
|
||||||
// Initialiser
|
// Initialiser
|
||||||
$blockleft=$blockright="";
|
$blockleft=$blockright="";
|
||||||
@ -163,12 +168,9 @@
|
|||||||
// Page pleine pour la configuration des modules et l'édition des pages sauf l'affichae d'un article de blog
|
// Page pleine pour la configuration des modules et l'édition des pages sauf l'affichae d'un article de blog
|
||||||
if ((sizeof($blocks) === 1 ||
|
if ((sizeof($blocks) === 1 ||
|
||||||
!empty($this->getUrl(1))) &&
|
!empty($this->getUrl(1))) &&
|
||||||
$blogItem === false
|
$blogItem === false && $newsItem === false
|
||||||
) { // Pleine page en mode configuration
|
) { // Pleine page en mode configuration
|
||||||
$layout->showContent();
|
$layout->showContent();
|
||||||
if (file_exists('site/data/body.inc.html')) {
|
|
||||||
include('site/data/body.inc.html');
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
<div class="row siteContainer">
|
<div class="row siteContainer">
|
||||||
|
Loading…
Reference in New Issue
Block a user