ZwiiCMS/core/module/maintenance/maintenance.php

57 lines
1.7 KiB
PHP
Raw Normal View History

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
* @license CC Attribution-NonCommercial-NoDerivatives 4.0 International
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
2022-09-29 08:45:59 +02:00
class maintenance extends common
{
2018-04-02 08:29:19 +02:00
public static $actions = [
'index' => self::GROUP_VISITOR
];
/**
* Maintenance
*/
2022-09-29 08:45:59 +02:00
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.
2022-09-29 08:45:59 +02:00
if ($this->getData(['config', 'maintenance']) == False) {
2020-11-04 13:22:07 +01:00
header('Location:' . helper::baseUrl());
exit();
}
2020-09-12 09:52:30 +02:00
// Page perso définie et existante
2022-09-29 08:45:59 +02:00
if (
$this->getData(['locale', 'page302']) !== 'none'
and $this->getData(['page', $this->getData(['locale', 'page302'])])
) {
$this->addOutput([
'display' => self::DISPLAY_LAYOUT_LIGHT,
'title' => $this->getData(['page', $this->getData(['locale', 'page302']), 'hideTitle'])
? ''
: $this->getData(['page', $this->getData(['locale', 'page302']), 'title']),
//'content' => $this->getdata(['page',$this->getData(['locale','page302']),'content']),
'content' => $this->getPage($this->getData(['locale', 'page302']), self::$i18nContent),
'view' => 'index'
]);
2020-09-12 09:52:30 +02:00
} else {
// Valeurs en sortie
$this->addOutput([
'display' => self::DISPLAY_LAYOUT_LIGHT,
2022-10-02 10:59:42 +02:00
'title' => helper::translate('Maintenance en cours...'),
2020-09-12 09:52:30 +02:00
'view' => 'index'
]);
}
2018-04-02 08:29:19 +02:00
}
2022-09-29 08:45:59 +02:00
}