2020-11-11 19:48:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file is part of Zwii.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @license GNU General Public License, version 3
|
|
|
|
* @link http://zwiicms.fr/
|
|
|
|
*/
|
|
|
|
|
|
|
|
class translate extends common {
|
|
|
|
|
|
|
|
public static $actions = [
|
|
|
|
/*'config' => self::GROUP_MODERATOR,*/
|
2020-11-22 13:32:20 +01:00
|
|
|
'index' => self::GROUP_MODERATOR,
|
|
|
|
'language' => self::GROUP_VISITOR
|
2020-11-11 19:48:07 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Configuration
|
|
|
|
*/
|
|
|
|
public function index() {
|
|
|
|
// Soumission du formulaire
|
|
|
|
if($this->isPost()) {
|
|
|
|
$this->setData(['translate', [
|
2020-11-22 13:32:20 +01:00
|
|
|
'activated' => $this->getInput('translateActivated', helper::FILTER_BOOLEAN),
|
|
|
|
'showCredits' => $this->getInput('translateCredits', helper::FILTER_BOOLEAN) ? $this->getInput('translateCredits', helper::FILTER_BOOLEAN) : false,
|
|
|
|
'autoDetect' => $this->getInput('translateAutoDetect', helper::FILTER_BOOLEAN)
|
2020-11-11 19:48:07 +01:00
|
|
|
]]);
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'redirect' => helper::baseUrl() . $this->getUrl(),
|
|
|
|
'notification' => 'Modifications enregistrées',
|
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
// Valeurs en sortie
|
|
|
|
$this->addOutput([
|
|
|
|
'title' => 'Paramètres',
|
|
|
|
'view' => 'index'
|
|
|
|
]);
|
2020-11-22 13:32:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Traitement du changement de langues
|
|
|
|
*/
|
|
|
|
public function language() {
|
|
|
|
echo $this->getUrl(2);
|
|
|
|
die();
|
|
|
|
// Traitement du changement de langue
|
|
|
|
if (isset($lan)) {
|
|
|
|
$this->seti18n($lan);
|
|
|
|
// Valeurs en sortie sans post
|
|
|
|
$this->addOutput([
|
|
|
|
'redirect' => helper::baseUrl(false),
|
|
|
|
'state' => true
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
$this->addOutput([
|
|
|
|
'redirect' => helper::baseUrl(false)
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-11 19:48:07 +01:00
|
|
|
|
|
|
|
}
|