config i18n supp la varaible enable

This commit is contained in:
Fred Tempez 2021-06-07 19:29:14 +02:00
parent c8ababce27
commit c97a0847a8
5 changed files with 12 additions and 12 deletions

View File

@ -252,7 +252,7 @@ class common {
* - L'auto-détection est active * - L'auto-détection est active
*/ */
if ( $this->getData(['config', 'i18n', 'enabled']) === true if ( $this->getData(['config', 'i18n']) === true
AND $this->getData(['config', 'i18n','scriptGoogle']) === true AND $this->getData(['config', 'i18n','scriptGoogle']) === true
AND $this->getData(['config', 'i18n','autoDetect']) === true AND $this->getData(['config', 'i18n','autoDetect']) === true
AND $this->getInput('ZWII_I18N_SITE') !== '' AND $this->getInput('ZWII_I18N_SITE') !== ''
@ -2387,7 +2387,7 @@ class core extends common {
// Chargement de la bibliothèque googtrans // Chargement de la bibliothèque googtrans
// Le script de traduction est sélectionné // Le script de traduction est sélectionné
if ($this->getData(['config', 'i18n', 'enabled']) === true) { if ($this->getData(['config', 'i18n']) === true) {
if ( $this->getData(['config', 'i18n','scriptGoogle']) === true if ( $this->getData(['config', 'i18n','scriptGoogle']) === true
// et la traduction de la langue courante est automatique // et la traduction de la langue courante est automatique
AND ( $this->getInput('ZWII_I18N_SCRIPT') !== '' AND ( $this->getInput('ZWII_I18N_SCRIPT') !== ''
@ -2534,7 +2534,7 @@ class layout extends common {
* @param Page par défaut * @param Page par défaut
*/ */
public function showContent() { public function showContent() {
if ($this->getData(['config', 'i18n', 'enabled']) === true) { if ($this->getData(['config', 'i18n']) === true) {
echo $this->showi18n('Site'); echo $this->showi18n('Site');
} }
if( if(
@ -2555,7 +2555,7 @@ class layout extends common {
* La traduction est active et le site n'est pas en français. * La traduction est active et le site n'est pas en français.
* La fonction est activée. * La fonction est activée.
*/ */
if ( $this->getData(['config', 'i18n', 'enabled']) === true if ( $this->getData(['config', 'i18n']) === true
AND $this->getData(['config', 'i18n','scriptGoogle']) === true AND $this->getData(['config', 'i18n','scriptGoogle']) === true
AND $this->getData(['config', 'i18n','showCredits']) === true AND $this->getData(['config', 'i18n','showCredits']) === true
AND AND
@ -2921,7 +2921,7 @@ class layout extends common {
} }
// Retourne les items du menu // Retourne les items du menu
echo '<ul class="navMain" id="menuLeft">' . $itemsLeft . '</ul><ul class="navMain" id="menuRight">' . $itemsRight . '</ul>'; echo '<ul class="navMain" id="menuLeft">' . $itemsLeft . '</ul><ul class="navMain" id="menuRight">' . $itemsRight . '</ul>';
if ($this->getData(['config', 'i18n', 'enabled']) === true) { if ($this->getData(['config', 'i18n']) === true) {
echo $this->showi18n('Nav'); echo $this->showi18n('Nav');
} }
} }
@ -3165,7 +3165,7 @@ class layout extends common {
if($this->getUser('group') >= self::GROUP_ADMIN) { if($this->getUser('group') >= self::GROUP_ADMIN) {
$rightItems .= '<li><a href="' . helper::baseUrl() . 'user" data-tippy-content="Configurer les utilisateurs">' . template::ico('users') . '</a></li>'; $rightItems .= '<li><a href="' . helper::baseUrl() . 'user" data-tippy-content="Configurer les utilisateurs">' . template::ico('users') . '</a></li>';
$rightItems .= '<li><a href="' . helper::baseUrl() . 'theme" data-tippy-content="Personnaliser les thèmes">' . template::ico('brush') . '</a></li>'; $rightItems .= '<li><a href="' . helper::baseUrl() . 'theme" data-tippy-content="Personnaliser les thèmes">' . template::ico('brush') . '</a></li>';
if ($this->getData(['config', 'i18n', 'enabled']) === true) { if ($this->getData(['config', 'i18n']) === true) {
$rightItems .= '<li><a href="' . helper::baseUrl() . 'translate" data-tippy-content="Gestion des langues">' . template::ico('flag') . '</a></li>'; $rightItems .= '<li><a href="' . helper::baseUrl() . 'translate" data-tippy-content="Gestion des langues">' . template::ico('flag') . '</a></li>';
} }
$rightItems .= '<li><a href="' . helper::baseUrl() . 'addon" data-tippy-content="Gérer les modules">' . template::ico('puzzle') . '</a></li>'; $rightItems .= '<li><a href="' . helper::baseUrl() . 'addon" data-tippy-content="Gérer les modules">' . template::ico('puzzle') . '</a></li>';

View File

@ -401,7 +401,7 @@ class config extends common {
'title' => $this->getInput('configTitle', helper::FILTER_STRING_SHORT, true) 'title' => $this->getInput('configTitle', helper::FILTER_STRING_SHORT, true)
] ]
]); ]);
$this->setData(['config', 'i18n', 'enabled', $this->getInput('configI18n',helper::FILTER_BOOLEAN) ]); $this->setData(['config', 'i18n', $this->getInput('configI18n',helper::FILTER_BOOLEAN) ]);
// Générer robots.txt et sitemap // Générer robots.txt et sitemap
$this->generateFiles(); $this->generateFiles();
// Valeurs en sortie // Valeurs en sortie
@ -480,8 +480,7 @@ class config extends common {
'log' => $this->getInput('configAdvancedConnectLog',helper::FILTER_BOOLEAN), 'log' => $this->getInput('configAdvancedConnectLog',helper::FILTER_BOOLEAN),
'captcha' => $this->getInput('configAdvancedConnectCaptcha',helper::FILTER_BOOLEAN), 'captcha' => $this->getInput('configAdvancedConnectCaptcha',helper::FILTER_BOOLEAN),
], ],
'i18n' => [ 'i18n' => [ $this->getData(['config', 'i18n'])
'enabled' => $this->getData(['config', 'i18n', 'enabled'])
] ]
] ]
]); ]);

View File

@ -69,7 +69,7 @@
<div class="row"> <div class="row">
<div class="col12"> <div class="col12">
<?php echo template::checkbox('configI18n', true, 'Activer la gestion des langues étrangères', [ <?php echo template::checkbox('configI18n', true, 'Activer la gestion des langues étrangères', [
'checked' => $this->getData(['config', 'i18n', 'enabled']), 'checked' => $this->getData(['config', 'i18n']),
'help'=> 'Une nouvelle icône apparaîtra dans la barre d\'administration. Consultez l\'aide de la page concernée pour en apprendre plus.' 'help'=> 'Une nouvelle icône apparaîtra dans la barre d\'administration. Consultez l\'aide de la page concernée pour en apprendre plus.'
]); ?> ]); ?>
</div> </div>

View File

@ -32,7 +32,8 @@ class init extends common {
'attempt' => 3, 'attempt' => 3,
'log' => false, 'log' => false,
'captcha' => true 'captcha' => true
] ],
'i18n' => false
], ],
'core' => [ 'core' => [
'dataVersion' => 10602, 'dataVersion' => 10602,

View File

@ -129,7 +129,7 @@ class translate extends common {
} }
// Enregistrement des données // Enregistrement des données
$this->setData(['config','i18n', [ $this->setData(['config','i18n', [
'enabled' => $this->getData(['config', 'i18n', 'enabled']), 'enabled' => $this->getData(['config', 'i18n']),
'scriptGoogle' => $script, 'scriptGoogle' => $script,
'showCredits' => $this->getInput('translateScriptGoogle', helper::FILTER_BOOLEAN) ? $this->getInput('translateCredits', helper::FILTER_BOOLEAN) : false, 'showCredits' => $this->getInput('translateScriptGoogle', helper::FILTER_BOOLEAN) ? $this->getInput('translateCredits', helper::FILTER_BOOLEAN) : false,
'autoDetect' => $this->getInput('translateScriptGoogle', helper::FILTER_BOOLEAN) ? $this->getInput('translateAutoDetect', helper::FILTER_BOOLEAN) : false, 'autoDetect' => $this->getInput('translateScriptGoogle', helper::FILTER_BOOLEAN) ? $this->getInput('translateAutoDetect', helper::FILTER_BOOLEAN) : false,