forked from ZwiiCMS-Team/ZwiiCMS
[9.0.17] new option version footer
This commit is contained in:
parent
3adba33954
commit
f5a68d6d43
@ -9,7 +9,7 @@
|
||||
- Ajustement CSS du pied de page
|
||||
- Harmonisation du contenu des bulles d'aide
|
||||
- Modification :
|
||||
- Ajout du numéro de version dans le pied de page
|
||||
- Ajout du numéro de version dans le pied de page activable dans la configuration
|
||||
- Désactivation Aviary dans Responsive FileManager
|
||||
|
||||
## Version 9.0.16
|
||||
|
@ -1705,12 +1705,17 @@ class layout extends common {
|
||||
|
||||
|
||||
|
||||
/**
|
||||
/**
|
||||
* Affiche le copyright
|
||||
*/
|
||||
public function showCopyright() {
|
||||
$items = '<div id="footerCopyright">';
|
||||
$items .= '<span id="footerFont">Motorisé par <a href="http://zwiicms.com/" onclick="window.open(this.href);return false" data-tippy-content="Zwii CMS sans base de données, très léger et performant">Zwii ' . common::ZWII_VERSION . ' </a>';
|
||||
$items .= '<span id="footerFont">Motorisé par <a href="http://zwiicms.com/" onclick="window.open(this.href);return false" data-tippy-content="Zwii CMS sans base de données, très léger et performant">Zwii';
|
||||
if ($this->getData(['config','displayVersion']) === TRUE) {
|
||||
$items .= ' ' . common::ZWII_VERSION ;
|
||||
}
|
||||
$items .= '</a>';
|
||||
|
||||
$items .= ' | <a href="' . helper::baseUrl() . 'sitemap" data-tippy-content="Plan du site" >Plan du site</a></span>';
|
||||
if(
|
||||
(
|
||||
|
@ -223,7 +223,8 @@ class config extends common {
|
||||
],
|
||||
'timezone' => $this->getInput('configTimezone', helper::FILTER_STRING_SHORT, true),
|
||||
'title' => $this->getInput('configTitle', helper::FILTER_STRING_SHORT, true),
|
||||
'itemsperPage' => $this->getInput('itemsperPage', helper::FILTER_INT,true)
|
||||
'itemsperPage' => $this->getInput('itemsperPage', helper::FILTER_INT,true),
|
||||
'displayVersion' => $this->getInput('configDisplayVersion', helper::FILTER_BOOLEAN)
|
||||
]
|
||||
]);
|
||||
if(self::$inputNotices === []) {
|
||||
|
@ -176,6 +176,10 @@
|
||||
'label' => 'Fuseau horaire',
|
||||
'selected' => $this->getData(['config', 'timezone'])
|
||||
]); ?>
|
||||
<?php echo template::checkbox('configDisplayVersion', true, 'Afficher le numéro de version', [
|
||||
'checked' => $this->getData(['config', 'displayVersion']),
|
||||
'help' => 'Afficher le numéro de version dans le pied de page.'
|
||||
]); ?>
|
||||
<?php echo template::checkbox('configMaintenance', true, 'Site en maintenance', [
|
||||
'checked' => $this->getData(['config', 'maintenance']),
|
||||
'help' => 'Le site devient inaccessible sauf pour les administrateurs.'
|
||||
|
Loading…
Reference in New Issue
Block a user