forked from ZwiiCMS-Team/ZwiiCMS
[9.3.06] petites corrections
This commit is contained in:
parent
23e122f0f2
commit
8becd89e18
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## Version 9.2.06
|
||||||
|
- Correction :
|
||||||
|
- Validation html
|
||||||
|
- Syntaxe du fichier robots.txt
|
||||||
|
|
||||||
## Version 9.2.05
|
## Version 9.2.05
|
||||||
- Correction :
|
- Correction :
|
||||||
- Suppression totale de Swiper (dossier source et template Tinymce)
|
- Suppression totale de Swiper (dossier source et template Tinymce)
|
||||||
|
@ -33,7 +33,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.2.05';
|
const ZWII_VERSION = '9.2.06';
|
||||||
|
|
||||||
public static $actions = [];
|
public static $actions = [];
|
||||||
public static $coreModuleIds = [
|
public static $coreModuleIds = [
|
||||||
@ -618,17 +618,16 @@ class common {
|
|||||||
PHP_EOL .
|
PHP_EOL .
|
||||||
'# ZWII CONFIG ---------' . PHP_EOL .
|
'# ZWII CONFIG ---------' . PHP_EOL .
|
||||||
'User-agent: *' . PHP_EOL .
|
'User-agent: *' . PHP_EOL .
|
||||||
'Disallow: /core/' . PHP_EOL .
|
// 'Disallow: /core/' . PHP_EOL .
|
||||||
'Disallow: /module/' .PHP_EOL .
|
// 'Disallow: /module/' .PHP_EOL .
|
||||||
'Disallow: /site/data' .PHP_EOL .
|
'Disallow: /site/data/' .PHP_EOL .
|
||||||
'Disallow: /site/tmp' .PHP_EOL .
|
'Disallow: /site/tmp/' .PHP_EOL .
|
||||||
'Disallow: /site/backup' .PHP_EOL .
|
'Disallow: /site/backup/' .PHP_EOL .
|
||||||
'Allow: /site/file/' .PHP_EOL .
|
'Allow: /site/file/' .PHP_EOL .
|
||||||
'Sitemap: ' . helper::baseUrl(false) . 'sitemap.xml' . PHP_EOL .
|
'Sitemap: ' . helper::baseUrl(false) . 'sitemap.xml' . PHP_EOL .
|
||||||
'Sitemap: ' . helper::baseUrl(false) . 'sitemap.xml.gz' . PHP_EOL .
|
'Sitemap: ' . helper::baseUrl(false) . 'sitemap.xml.gz' . PHP_EOL .
|
||||||
'# ZWII CONFIG ---------' . PHP_EOL ;
|
'# ZWII CONFIG ---------' . PHP_EOL ;
|
||||||
|
|
||||||
|
|
||||||
if (file_exists('robots.txt')) {
|
if (file_exists('robots.txt')) {
|
||||||
return(file_put_contents(
|
return(file_put_contents(
|
||||||
'robots.txt',
|
'robots.txt',
|
||||||
|
@ -1,270 +1,253 @@
|
|||||||
<?php $layout = new layout($this); ?>
|
<?php $layout = new layout($this); ?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html prefix="og: http://ogp.me/ns#" lang="fr">
|
<html prefix="og: http://ogp.me/ns#" lang="fr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<?php $layout->showMetaTitle(); ?>
|
<?php $layout->showMetaTitle(); ?>
|
||||||
<?php $layout->showMetaDescription(); ?>
|
<?php $layout->showMetaDescription(); ?>
|
||||||
<?php $layout->showMetaType(); ?>
|
<?php $layout->showMetaType(); ?>
|
||||||
<?php $layout->showMetaImage(); ?>
|
<?php $layout->showMetaImage(); ?>
|
||||||
<?php $layout->showFavicon(); ?>
|
<?php $layout->showFavicon(); ?>
|
||||||
<?php $layout->showVendor(); ?>
|
<?php $layout->showVendor(); ?>
|
||||||
<?php $layout->showAnalytics(); ?>
|
<?php $layout->showAnalytics(); ?>
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>core/layout/common.css">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>site/data/theme.css?<?php echo md5_file(self::DATA_DIR.'theme.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>site/data/theme.css?<?php echo md5_file(self::DATA_DIR.'theme.css'); ?>">
|
||||||
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>site/data/custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
<link rel="stylesheet" href="<?php echo helper::baseUrl(false); ?>site/data/custom.css?<?php echo md5_file(self::DATA_DIR.'custom.css'); ?>">
|
||||||
<?php $layout->showStyle(); ?>
|
<?php $layout->showStyle(); ?>
|
||||||
<?php
|
<?php if (file_exists('site/data/head.inc.html')) {
|
||||||
if (file_exists('site/data/head.inc.html')) {
|
include('site/data/head.inc.html');
|
||||||
include('site/data/head.inc.html');
|
}?>
|
||||||
}
|
</head>
|
||||||
?>
|
<body>
|
||||||
</head>
|
<?php $layout->showBar(); ?>
|
||||||
<body>
|
<?php $layout->showNotification(); ?>
|
||||||
<?php $layout->showBar(); ?>
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-first' || $this->getData(['theme', 'menu', 'position']) === 'top' ): ?>
|
||||||
<?php $layout->showNotification(); ?>
|
<!-- Menu dans le fond du site avant la bannière -->
|
||||||
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-first' || $this->getData(['theme', 'menu', 'position']) === 'top' ): ?>
|
<nav
|
||||||
<!-- Menu dans le fond du site avant la bannière -->
|
<?php
|
||||||
<nav
|
// Détermine si le menu est fixe en haut de page lorsque l'utilisateur n'est pas connecté
|
||||||
<?php
|
//
|
||||||
// Détermine si le menu est fixe en haut de page lorsque l'utilisateur n'est pas connecté
|
if($this->getData(['theme', 'menu', 'position']) === 'top' &&
|
||||||
//
|
$this->getData(['theme', 'menu', 'fixed']) === true) {
|
||||||
if($this->getData(['theme', 'menu', 'position']) === 'top' &&
|
if ($this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD'))
|
||||||
$this->getData(['theme', 'menu', 'fixed']) === true) {
|
{echo 'id="navfixedlogout"';}
|
||||||
if ($this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD'))
|
elseif ($this->getUrl(0) !== 'theme')
|
||||||
{echo 'id="navfixedlogout"';}
|
{echo 'id="navfixedconnected"';}
|
||||||
elseif ($this->getUrl(0) !== 'theme')
|
|
||||||
{echo 'id="navfixedconnected"';}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
>
|
|
||||||
<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';}
|
|
||||||
?>">
|
|
||||||
|
|
||||||
<?php $layout->showMenu(); ?>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php if($this->getData(['theme', 'header', 'position']) === 'body'): ?>
|
|
||||||
<!-- Bannière dans le fond du site -->
|
|
||||||
<header>
|
|
||||||
<?php
|
|
||||||
if ($this->getData(['theme','header','linkHome'])){
|
|
||||||
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
|
||||||
<?php if(
|
|
||||||
$this->getData(['theme', 'header', 'textHide']) === false
|
|
||||||
// Affiche toujours le titre de la bannière pour l'édition du thème
|
|
||||||
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
|
||||||
): ?>
|
|
||||||
<div class="container">
|
|
||||||
<span><?php echo $this->getData(['config', 'title']); ?></span>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php
|
|
||||||
if ($this->getData(['theme','header','linkHome'])){echo "</a>";}
|
|
||||||
?>
|
|
||||||
</header>
|
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-second'): ?>
|
|
||||||
<!-- Menu dans le fond du site après la bannière -->
|
|
||||||
<nav>
|
|
||||||
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
|
||||||
<div id="menu" class="container">
|
|
||||||
<?php $layout->showMenu(); ?>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<?php endif; ?>
|
|
||||||
<!-- Site -->
|
|
||||||
<div id="site" class="container">
|
|
||||||
<?php if($this->getData(['theme', 'menu', 'position']) === 'site-first'): ?>
|
|
||||||
<!-- Menu dans le site avant la bannière -->
|
|
||||||
<nav>
|
|
||||||
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
|
||||||
<div id="menu" class="container">
|
|
||||||
<?php $layout->showMenu(); ?>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php if(
|
|
||||||
$this->getData(['theme', 'header', 'position']) === 'site'
|
|
||||||
// Affiche toujours la bannière pour l'édition du thème
|
|
||||||
OR (
|
|
||||||
$this->getData(['theme', 'header', 'position']) === 'hide'
|
|
||||||
AND $this->getUrl(0) === 'theme'
|
|
||||||
)
|
|
||||||
): ?>
|
|
||||||
<!-- Bannière dans le site -->
|
|
||||||
<?php
|
|
||||||
if ($this->getData(['theme','header','linkHome'])){
|
|
||||||
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
|
||||||
<header <?php if($this->getData(['theme', 'header', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
|
||||||
<?php if(
|
|
||||||
$this->getData(['theme', 'header', 'textHide']) === false
|
|
||||||
// Affiche toujours le titre de la bannière pour l'édition du thème
|
|
||||||
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
|
||||||
): ?>
|
|
||||||
<div class="container">
|
|
||||||
<span><?php echo $this->getData(['config', 'title']); ?></span>
|
|
||||||
</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
</header>
|
|
||||||
<?php
|
|
||||||
if ($this->getData(['theme','header','linkHome'])){echo "</a>";} ?>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php if(
|
|
||||||
$this->getData(['theme', 'menu', 'position']) === 'site-second' ||
|
|
||||||
$this->getData(['theme', 'menu', 'position']) === 'site'
|
|
||||||
// Affiche toujours le menu pour l'édition du thème
|
|
||||||
OR (
|
|
||||||
$this->getData(['theme', 'menu', 'position']) === 'hide'
|
|
||||||
AND $this->getUrl(0) === 'theme'
|
|
||||||
)
|
|
||||||
): ?>
|
|
||||||
<!-- Menu dans le site après la bannière -->
|
|
||||||
<nav <?php if($this->getData(['theme', 'menu', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
|
||||||
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
|
||||||
<div id="menu" class="container">
|
|
||||||
<?php $layout->showMenu(); ?>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
<?php endif; ?>
|
|
||||||
<!-- Corps de page -->
|
|
||||||
<section>
|
|
||||||
<?php
|
|
||||||
// Gabarit :
|
|
||||||
// Récupérer la config de la page courante
|
|
||||||
$blocks = explode('-',$this->getData(['page',$this->getUrl(0),'block']));
|
|
||||||
// Initialiser
|
|
||||||
$blockleft=$blockright="";
|
|
||||||
switch (sizeof($blocks)) {
|
|
||||||
case 1 : // une colonne
|
|
||||||
$content = 'col'. $blocks[0] ;
|
|
||||||
break;
|
|
||||||
case 2 : // 2 blocks
|
|
||||||
if ($blocks[0] < $blocks[1]) { // détermine la position de la colonne
|
|
||||||
$blockleft = 'col'. $blocks[0];
|
|
||||||
$content = 'col'. $blocks[1] ;
|
|
||||||
} else {
|
|
||||||
$content = 'col' . $blocks[0];
|
|
||||||
$blockright = 'col' . $blocks[1];
|
|
||||||
}
|
}
|
||||||
break;
|
?>
|
||||||
case 3 : // 3 blocks
|
>
|
||||||
$blockleft = 'col' . $blocks[0];
|
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
||||||
$content = 'col' . $blocks[1];
|
<div id="menu" class="
|
||||||
$blockright = 'col' . $blocks[2];
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'top'){echo 'container-large';}else{echo'container';}
|
||||||
}
|
?>">
|
||||||
// Page pleine pour la configuration des modules et l'édition des pages sauf l'affichae d'un article de blog
|
|
||||||
$pattern = ['config','edit','add','comment','data'];
|
<?php $layout->showMenu(); ?>
|
||||||
if ((sizeof($blocks) === 1 ||
|
</div> <!--fin menu -->
|
||||||
in_array($this->getUrl(1),$pattern) )
|
</nav>
|
||||||
) { // Pleine page en mode configuration
|
<?php endif; ?>
|
||||||
$layout->showContent();
|
<?php if($this->getData(['theme', 'header', 'position']) === 'body'): ?>
|
||||||
if (file_exists('site/data/body.inc.html')) {
|
<!-- Bannière dans le fond du site -->
|
||||||
include('site/data/body.inc.html');
|
<header>
|
||||||
}
|
<?php
|
||||||
} else {
|
if ($this->getData(['theme','header','linkHome'])){
|
||||||
?>
|
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
||||||
<div class="row siteContainer">
|
<?php if(
|
||||||
<?php
|
$this->getData(['theme', 'header', 'textHide']) === false
|
||||||
if ($blockleft !== "") :?>
|
// Affiche toujours le titre de la bannière pour l'édition du thème
|
||||||
<div class="<?php echo $blockleft; ?>" id="contentLeft">
|
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
||||||
<?php $layout->showBarContentLeft(); ?>
|
): ?>
|
||||||
</div>
|
<div class="container">
|
||||||
|
<span><?php echo $this->getData(['config', 'title']); ?></span>
|
||||||
|
</div> <!--fin container -->
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<div class="<?php echo $content; ?>" id="contentSite"><?php $layout->showContent();
|
<?php
|
||||||
if (file_exists('site/data/body.inc.html')) {
|
if ($this->getData(['theme','header','linkHome'])){echo "</a>";}
|
||||||
include('site/data/body.inc.html');
|
?>
|
||||||
}
|
</header>
|
||||||
?>
|
<?php endif; ?>
|
||||||
</div>
|
|
||||||
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-second'): ?>
|
||||||
|
<!-- Menu dans le fond du site après la bannière -->
|
||||||
|
<nav>
|
||||||
|
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
||||||
|
<div id="menu" class="container"><?php $layout->showMenu(); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
<!-- Site -->
|
||||||
|
<div id="site" class="container">
|
||||||
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'site-first'): ?>
|
||||||
|
<!-- Menu dans le site avant la bannière -->
|
||||||
|
<nav>
|
||||||
|
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
||||||
|
<div id="menu" class="container"><?php $layout->showMenu(); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if(
|
||||||
|
$this->getData(['theme', 'header', 'position']) === 'site'
|
||||||
|
// Affiche toujours la bannière pour l'édition du thème
|
||||||
|
OR (
|
||||||
|
$this->getData(['theme', 'header', 'position']) === 'hide'
|
||||||
|
AND $this->getUrl(0) === 'theme'
|
||||||
|
)
|
||||||
|
): ?>
|
||||||
|
<!-- Bannière dans le site -->
|
||||||
|
<?php
|
||||||
|
if ($this->getData(['theme','header','linkHome'])){
|
||||||
|
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
||||||
|
<header <?php if($this->getData(['theme', 'header', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
||||||
|
<?php if(
|
||||||
|
$this->getData(['theme', 'header', 'textHide']) === false
|
||||||
|
// Affiche toujours le titre de la bannière pour l'édition du thème
|
||||||
|
OR ($this->getUrl(0) === 'theme' AND $this->getUrl(1) === 'header')
|
||||||
|
): ?>
|
||||||
|
<div class="container"><span><?php echo $this->getData(['config', 'title']); ?></span></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</header>
|
||||||
|
<?php
|
||||||
|
if ($this->getData(['theme','header','linkHome'])){echo "</a>";} ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
<?php if(
|
||||||
|
$this->getData(['theme', 'menu', 'position']) === 'site-second' ||
|
||||||
|
$this->getData(['theme', 'menu', 'position']) === 'site'
|
||||||
|
// Affiche toujours le menu pour l'édition du thème
|
||||||
|
OR (
|
||||||
|
$this->getData(['theme', 'menu', 'position']) === 'hide'
|
||||||
|
AND $this->getUrl(0) === 'theme'
|
||||||
|
)
|
||||||
|
): ?>
|
||||||
|
<!-- Menu dans le site après la bannière -->
|
||||||
|
<nav <?php if($this->getData(['theme', 'menu', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
||||||
|
<div id="toggle"><?php echo template::ico('menu',null,null,'2em'); ?></div>
|
||||||
|
<div id="menu" class="container"><?php $layout->showMenu(); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
<!-- Corps de page -->
|
||||||
|
<section>
|
||||||
<?php
|
<?php
|
||||||
if ($blockright !== "") :?>
|
// Gabarit :
|
||||||
<div class="<?php echo $blockright; ?>" id="contentRight">
|
// Récupérer la config de la page courante
|
||||||
<?php $layout->showBarContentRight(); ?>
|
$blocks = explode('-',$this->getData(['page',$this->getUrl(0),'block']));
|
||||||
|
// Initialiser
|
||||||
|
$blockleft=$blockright="";
|
||||||
|
switch (sizeof($blocks)) {
|
||||||
|
case 1 : // une colonne
|
||||||
|
$content = 'col'. $blocks[0] ;
|
||||||
|
break;
|
||||||
|
case 2 : // 2 blocks
|
||||||
|
if ($blocks[0] < $blocks[1]) { // détermine la position de la colonne
|
||||||
|
$blockleft = 'col'. $blocks[0];
|
||||||
|
$content = 'col'. $blocks[1] ;
|
||||||
|
} else {
|
||||||
|
$content = 'col' . $blocks[0];
|
||||||
|
$blockright = 'col' . $blocks[1];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 3 : // 3 blocks
|
||||||
|
$blockleft = 'col' . $blocks[0];
|
||||||
|
$content = 'col' . $blocks[1];
|
||||||
|
$blockright = 'col' . $blocks[2];
|
||||||
|
}
|
||||||
|
// Page pleine pour la configuration des modules et l'édition des pages sauf l'affichae d'un article de blog
|
||||||
|
$pattern = ['config','edit','add','comment','data'];
|
||||||
|
if ((sizeof($blocks) === 1 ||
|
||||||
|
in_array($this->getUrl(1),$pattern) )
|
||||||
|
) { // Pleine page en mode configuration
|
||||||
|
$layout->showContent();
|
||||||
|
if (file_exists('site/data/body.inc.html')) {
|
||||||
|
include('site/data/body.inc.html');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
?>
|
||||||
|
<div class="row siteContainer">
|
||||||
|
<?php
|
||||||
|
if ($blockleft !== "") :?>
|
||||||
|
<div class="<?php echo $blockleft; ?>" id="contentLeft"><?php $layout->showBarContentLeft(); ?></div>
|
||||||
|
<?php endif; ?>
|
||||||
|
<div class="<?php echo $content; ?>" id="contentSite"><?php $layout->showContent();
|
||||||
|
if (file_exists('site/data/body.inc.html')) {
|
||||||
|
include('site/data/body.inc.html');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
if ($blockright !== "") :?>
|
||||||
|
<div class="<?php echo $blockright; ?>" id="contentRight"><?php $layout->showBarContentRight(); ?></div>
|
||||||
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php }
|
||||||
|
?>
|
||||||
|
</section>
|
||||||
|
<!-- footer -->
|
||||||
|
<?php
|
||||||
|
// Déterminer la position
|
||||||
|
if(
|
||||||
|
$this->getData(['theme', 'footer', 'position']) === 'site'
|
||||||
|
// Affiche toujours le pied de page pour l'édition du thème
|
||||||
|
OR (
|
||||||
|
$this->getData(['theme', 'footer', 'position']) === 'hide'
|
||||||
|
AND $this->getUrl(0) === 'theme'
|
||||||
|
)
|
||||||
|
) { $position = 'site'; } else {
|
||||||
|
$position = 'body';
|
||||||
|
//echo '</div>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<!-- Pied de page -->
|
||||||
|
<footer <?php if($this->getData(['theme', 'footer', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
||||||
|
<?php
|
||||||
|
if ($position === 'site'): ?>
|
||||||
|
<div class="container"><div class="row" id="footersite">
|
||||||
|
<?php else: ?>
|
||||||
|
<div class="container-large"><div class="row" id="footerbody">
|
||||||
|
<?php endif?>
|
||||||
|
<!-- Mise en page -->
|
||||||
|
<?php switch($this->getData(['theme', 'footer', 'template'])) {
|
||||||
|
case '1' :
|
||||||
|
$class['left'] = "displayNone";
|
||||||
|
$class['center'] = "col12";
|
||||||
|
$class['right'] = "displayNone";
|
||||||
|
break;
|
||||||
|
case '2' :
|
||||||
|
$class['left'] = "col6";
|
||||||
|
$class['center'] = "displayNone";
|
||||||
|
$class['right'] = "col6";
|
||||||
|
break;
|
||||||
|
case '3' :
|
||||||
|
$class['left'] = "col4";
|
||||||
|
$class['center'] = "col4";
|
||||||
|
$class['right'] = "col4";
|
||||||
|
break;
|
||||||
|
case '4' :
|
||||||
|
$class['left'] = "col12";
|
||||||
|
$class['center'] = "col12";
|
||||||
|
$class['right'] = "col12";
|
||||||
|
break;
|
||||||
|
}?>
|
||||||
|
<div class="<?php echo $class['left'];?>" id="footer<?php echo $position;?>Left">
|
||||||
|
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'left') { $layout->showFooterText(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'left') { $layout->showSocials(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'left') {$layout->showCopyright(); }
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<div class="<?php echo $class['center'];?>" id="footer<?php echo $position;?>Center">
|
||||||
|
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'center') { $layout->showFooterText(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'center') { $layout->showSocials(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'center') { $layout->showCopyright(); }
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<div class="<?php echo $class['right'];?>" id="footer<?php echo $position;?>Right">
|
||||||
|
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'right') { $layout->showFooterText(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'right') { $layout->showSocials(); }
|
||||||
|
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'right') { $layout->showCopyright(); }
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
<?php }
|
<!-- Lien remonter en haut -->
|
||||||
?>
|
<div id="backToTop"><?php echo template::ico('up'); ?></div>
|
||||||
</section>
|
<?php $layout->showScript();?>
|
||||||
<!-- footer -->
|
|
||||||
|
|
||||||
<?php
|
|
||||||
|
|
||||||
// Déterminer la position
|
|
||||||
if(
|
|
||||||
$this->getData(['theme', 'footer', 'position']) === 'site'
|
|
||||||
// Affiche toujours le pied de page pour l'édition du thème
|
|
||||||
OR (
|
|
||||||
$this->getData(['theme', 'footer', 'position']) === 'hide'
|
|
||||||
AND $this->getUrl(0) === 'theme'
|
|
||||||
)
|
|
||||||
) { $position = 'site'; } else {
|
|
||||||
$position = 'body';
|
|
||||||
echo '</div>';
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<!-- Pied de page -->
|
|
||||||
<footer <?php if($this->getData(['theme', 'footer', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
|
|
||||||
<?php
|
|
||||||
if ($position === 'site'): ?>
|
|
||||||
<div class="container">
|
|
||||||
<div class="row" id="footersite">
|
|
||||||
<?php else: ?>
|
|
||||||
<div class="container-large">
|
|
||||||
<div class="row" id="footerbody">
|
|
||||||
<?php endif?>
|
|
||||||
<!-- Mise en page -->
|
|
||||||
<?php switch($this->getData(['theme', 'footer', 'template'])) {
|
|
||||||
case '1' :
|
|
||||||
$class['left'] = "displayNone";
|
|
||||||
$class['center'] = "col12";
|
|
||||||
$class['right'] = "displayNone";
|
|
||||||
break;
|
|
||||||
case '2' :
|
|
||||||
$class['left'] = "col6";
|
|
||||||
$class['center'] = "displayNone";
|
|
||||||
$class['right'] = "col6";
|
|
||||||
break;
|
|
||||||
case '3' :
|
|
||||||
$class['left'] = "col4";
|
|
||||||
$class['center'] = "col4";
|
|
||||||
$class['right'] = "col4";
|
|
||||||
break;
|
|
||||||
case '4' :
|
|
||||||
$class['left'] = "col12";
|
|
||||||
$class['center'] = "col12";
|
|
||||||
$class['right'] = "col12";
|
|
||||||
break;
|
|
||||||
}?>
|
|
||||||
<div class="<?php echo $class['left'];?>" id="footer<?php echo $position;?>Left">
|
|
||||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'left') { $layout->showFooterText(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'left') { $layout->showSocials(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'left') {$layout->showCopyright(); }
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
<div class="<?php echo $class['center'];?>" id="footer<?php echo $position;?>Center">
|
|
||||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'center') { $layout->showFooterText(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'center') { $layout->showSocials(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'center') { $layout->showCopyright(); }
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
<div class="<?php echo $class['right'];?>" id="footer<?php echo $position;?>Right">
|
|
||||||
<?php if($this->getData(['theme', 'footer', 'textPosition']) === 'right') { $layout->showFooterText(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'socialsPosition']) === 'right') { $layout->showSocials(); }
|
|
||||||
if($this->getData(['theme', 'footer', 'copyrightPosition']) === 'right') { $layout->showCopyright(); }
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
<!-- Lien remonter en haut -->
|
|
||||||
<div id="backToTop"><?php echo template::ico('up'); ?></div>
|
|
||||||
<?php $layout->showScript();?>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user