forked from ZwiiCMS-Team/ZwiiCMS
[9.1.00] correction mauvais commit
This commit is contained in:
parent
aa46570acb
commit
41dbe47040
@ -1820,23 +1820,7 @@ class layout extends common {
|
||||
* @param page chargée
|
||||
*/
|
||||
public function showBarContentLeft() {
|
||||
// Position du marqueur
|
||||
|
||||
if ($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barLeft']),'displayMenu']) === 'none') {
|
||||
// Pas de menu
|
||||
echo $this->core->output['contentLeft'];
|
||||
} else {
|
||||
// On recherche la position du menu
|
||||
$mark = strpos('[]',$this->core->output['contentLeft']);
|
||||
// pas de marqueur menu après le texte
|
||||
if ($mark === 0 ) {
|
||||
echo $this->core->output['contentLeft'];
|
||||
echo '<div id="menuSideLeft>' . $this->showMenuSide($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barLeft']),'displayMenu']) === 'parents' ? false : true) .'</div>';
|
||||
} else {
|
||||
// Placer le menu autour du texte
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -2282,7 +2266,7 @@ class layout extends common {
|
||||
if($this->getUser('group') >= self::GROUP_ADMIN) {
|
||||
$rightItems .= '<li><a href="' . helper::baseUrl() . 'user" data-tippy-content="Configurer les utilisateurs">' . template::ico('users') . '</a></li>';
|
||||
$rightItems .= '<li><a href="' . helper::baseUrl() . 'theme" data-tippy-content="Personnaliser le thème">' . template::ico('brush') . '</a></li>';
|
||||
$rightItems .= '<li><a href="' . helper::baseUrl() . 'config" data-tippy-content="Configurer le site">' . template::ico('cog-alt') . '</a></li>';
|
||||
$rightItems .= '<li><a href="' . helper::baseUrl() . 'config" data-tippy-content="Configurer le site">' . template::ico('gear') . '</a></li>';
|
||||
// Mise à jour automatique
|
||||
if(helper::checkNewVersion() ) {
|
||||
$rightItems .= '<li><a id="barUpdate" href="' . helper::baseUrl() . 'install/update" data-tippy-content="Mettre à jour Zwii '. common::ZWII_VERSION .' vers '. helper::getOnlineVersion() .'">' . template::ico('update colorRed') . '</a></li>';
|
||||
@ -2664,7 +2648,7 @@ class template {
|
||||
%s
|
||||
data-lity
|
||||
>
|
||||
' . self::ico('upload', 'right') . '
|
||||
' . self::ico('download', 'right') . '
|
||||
<span class="inputFileLabel"></span>
|
||||
</a>',
|
||||
$attributes['class'],
|
||||
|
@ -169,10 +169,21 @@
|
||||
<?php
|
||||
if ($blockleft !== "") :?>
|
||||
<div class="<?php echo $blockleft; ?>" id="contentLeft">
|
||||
<?php $layout->showBarContentLeft(); ?>
|
||||
<?php
|
||||
// Détermine si le bloc a un menu à inclure
|
||||
$layout->showBarContentLeft();
|
||||
// Type de menu affiché
|
||||
// 0 : aucun
|
||||
// 1 : menu complet
|
||||
// 2 : sous-menu de la page parente
|
||||
if ($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barLeft']),'displayMenu']) !== 'none') {
|
||||
?> <div id="menuSideLeft"><?php
|
||||
$layout->showMenuSide($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barLeft']),'displayMenu']) === 'parents' ? false : true);
|
||||
?></div><?php
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php endif; die();?>
|
||||
|
||||
<?php endif; ?>
|
||||
<div class="<?php echo $content; ?>
|
||||
" id="contentSite"><?php $layout->showContent(); ?>
|
||||
</div>
|
||||
@ -182,7 +193,10 @@
|
||||
<?php
|
||||
// Détermine si le bloc a un menu à inclure
|
||||
$layout->showBarContentRight();
|
||||
|
||||
// Type de menu affiché
|
||||
// 0 : aucun
|
||||
// 1 : menu complet
|
||||
// 2 : sous-menu de la page parente
|
||||
if ($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barRight']),'displayMenu']) !== 'none') {
|
||||
?> <div id="menuSideRight"><?php
|
||||
$layout->showMenuSide($this->getData(['page',$this->getData(['page',$this->getUrl(0),'barRight']),'displayMenu']) === 'parents' ? false : true);
|
||||
|
Loading…
Reference in New Issue
Block a user