forked from ZwiiCMS-Team/ZwiiCMS
8.4.1 correction : type du nombres articles par page
This commit is contained in:
parent
5095135b09
commit
375522c027
8
.htaccess
Normal file
8
.htaccess
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Cache le PHPSESSID de l'url
|
||||||
|
SetEnv SESSION_USE_TRANS_SID 0
|
||||||
|
|
||||||
|
# Bloque l'accès à la liste des fichiers
|
||||||
|
Options -Indexes
|
||||||
|
|
||||||
|
# Attention, surtout ne rien modifier ci-dessous !
|
||||||
|
# URL rewriting
|
@ -24,7 +24,7 @@ class common {
|
|||||||
const GROUP_MEMBER = 1;
|
const GROUP_MEMBER = 1;
|
||||||
const GROUP_MODERATOR = 2;
|
const GROUP_MODERATOR = 2;
|
||||||
const GROUP_ADMIN = 3;
|
const GROUP_ADMIN = 3;
|
||||||
const ZWII_VERSION = '8.4.0';
|
const ZWII_VERSION = '8.4.1';
|
||||||
|
|
||||||
public static $actions = [];
|
public static $actions = [];
|
||||||
public static $coreModuleIds = [
|
public static $coreModuleIds = [
|
||||||
@ -904,7 +904,7 @@ class common {
|
|||||||
$this->setData(['theme','footer','socialsPosition','1']);
|
$this->setData(['theme','footer','socialsPosition','1']);
|
||||||
$this->setData(['theme','footer','textPosition','2']);
|
$this->setData(['theme','footer','textPosition','2']);
|
||||||
$this->setData(['theme','footer','copyrightPosition','3']);
|
$this->setData(['theme','footer','copyrightPosition','3']);
|
||||||
$this->setData(['config','ItemsperPage','10']);
|
$this->setData(['config','ItemsperPage',10]);
|
||||||
$this->setData(['core', 'dataVersion', 840]);
|
$this->setData(['core', 'dataVersion', 840]);
|
||||||
$this->SaveData();
|
$this->SaveData();
|
||||||
}
|
}
|
||||||
|
@ -76,8 +76,8 @@ ol {
|
|||||||
|
|
||||||
/* Image */
|
/* Image */
|
||||||
img {
|
img {
|
||||||
max-width: 100%;
|
max-width: 100% !important;
|
||||||
height: auto;
|
height: auto !important;
|
||||||
}
|
}
|
||||||
img[align='left'] {
|
img[align='left'] {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
@ -311,6 +311,11 @@ header .container {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Bannière image responsive */
|
||||||
|
.responsive-banner img {
|
||||||
|
display:block; width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
/* Menu */
|
/* Menu */
|
||||||
body > nav {
|
body > nav {
|
||||||
margin: 0 -10px;
|
margin: 0 -10px;
|
||||||
@ -1044,4 +1049,4 @@ th.col12 {
|
|||||||
}
|
}
|
||||||
.colorOrange {
|
.colorOrange {
|
||||||
color: #F39C12;
|
color: #F39C12;
|
||||||
}
|
}
|
||||||
|
@ -25,8 +25,7 @@
|
|||||||
<div id="menu" class="
|
<div id="menu" class="
|
||||||
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-top'){echo 'container-large';}else{echo'container';}
|
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-top'){echo 'container-large';}else{echo'container';}
|
||||||
?>">
|
?>">
|
||||||
|
<?php $layout->showMenu(); ?>
|
||||||
<?php $layout->showMenu(); ?>
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
@ -244,4 +243,4 @@
|
|||||||
<?php $layout->showAnalytics(); ?>
|
<?php $layout->showAnalytics(); ?>
|
||||||
<?php $layout->showScript(); ?>
|
<?php $layout->showScript(); ?>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -38,6 +38,7 @@
|
|||||||
<div class="block">
|
<div class="block">
|
||||||
<h4>Image</h4>
|
<h4>Image</h4>
|
||||||
<?php echo template::file('themeHeaderImage', [
|
<?php echo template::file('themeHeaderImage', [
|
||||||
|
'help' => 'Si vous souhaitez une bannière vraiment responsive, composez une image aux dimensions prévues par Zwii avec titre, logo, slogan, etc. et choisissez la position « Cachée ».',
|
||||||
'label' => 'Fond',
|
'label' => 'Fond',
|
||||||
'type' => 1,
|
'type' => 1,
|
||||||
'value' => $this->getData(['theme', 'header', 'image'])
|
'value' => $this->getData(['theme', 'header', 'image'])
|
||||||
|
Loading…
Reference in New Issue
Block a user