2018-04-02 08:29:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2021-02-17 13:51:12 +01:00
|
|
|
* This file is part of Zwii.
|
2018-04-02 08:29:19 +02:00
|
|
|
* For full copyright and license information, please see the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* @author Rémi Jean <remi.jean@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
2021-02-17 13:49:58 +01:00
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
2021-12-18 10:25:33 +01:00
|
|
|
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
|
2018-04-02 08:29:19 +02:00
|
|
|
* @license GNU General Public License, version 3
|
2020-09-01 20:48:40 +02:00
|
|
|
* @link http://zwiicms.fr/
|
2018-04-02 08:29:19 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
class maintenance extends common {
|
|
|
|
|
|
|
|
public static $actions = [
|
|
|
|
'index' => self::GROUP_VISITOR
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maintenance
|
|
|
|
*/
|
|
|
|
public function index() {
|
2020-11-04 13:22:07 +01:00
|
|
|
// Redirection vers l'accueil après rafraîchissement et que la maintenance est terminée.
|
|
|
|
if($this->getData(['config', 'maintenance']) == False){
|
|
|
|
header('Location:' . helper::baseUrl());
|
|
|
|
exit();
|
|
|
|
}
|
2020-09-12 09:52:30 +02:00
|
|
|
// Page perso définie et existante
|
2020-11-21 15:09:10 +01:00
|
|
|
if ($this->getData(['locale','page302']) !== 'none'
|
|
|
|
AND $this->getData(['page',$this->getData(['locale','page302'])]) ) {
|
2020-09-12 09:52:30 +02:00
|
|
|
$this->addOutput([
|
|
|
|
'display' => self::DISPLAY_LAYOUT_LIGHT,
|
2021-03-22 11:02:29 +01:00
|
|
|
'title' => $this->getData(['page',$this->getData(['locale','page302']),'hideTitle'])
|
|
|
|
? ''
|
|
|
|
: $this->getData(['page',$this->getData(['locale','page302']),'title']),
|
2021-09-30 16:30:54 +02:00
|
|
|
//'content' => $this->getdata(['page',$this->getData(['locale','page302']),'content']),
|
|
|
|
'content' => $this->getPage($this->getData(['locale','page302']), self::$i18n),
|
2020-09-12 09:52:30 +02:00
|
|
|
'view' => 'index'
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'display' => self::DISPLAY_LAYOUT_LIGHT,
|
|
|
|
'title' => 'Maintenance en cours...',
|
|
|
|
'view' => 'index'
|
|
|
|
]);
|
|
|
|
}
|
2018-04-02 08:29:19 +02:00
|
|
|
}
|
|
|
|
|
2019-03-08 11:22:19 +01:00
|
|
|
}
|