Position des drapeaux
This commit is contained in:
parent
89c86300d4
commit
21d649946f
@ -229,8 +229,12 @@ class common {
|
||||
|
||||
// Auto traduction
|
||||
if ( $this->getData(['config','translate','activated'])) {
|
||||
// Lire la langue du navigateur
|
||||
$lan = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||
// Lire la langue du navigateur si pas de choix manuel
|
||||
if ( isset($_COOKIE['ZWII_USER_I18N']) ) {
|
||||
$lan = $_COOKIE['ZWII_USER_I18N'];
|
||||
} else {
|
||||
$lan = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||
}
|
||||
|
||||
// Changer la locale
|
||||
if ( $lan !== 'fr') {
|
||||
|
@ -714,18 +714,25 @@ li .menuSideChild {
|
||||
|
||||
#i18nContainer {
|
||||
z-index: 100;
|
||||
position: absolute ;
|
||||
position: relative ;
|
||||
float: right;
|
||||
width: auto;
|
||||
height: 20px;
|
||||
margin: 5px;
|
||||
top: 5px;
|
||||
right: 10px;
|
||||
height: auto;
|
||||
margin-top: -25px;
|
||||
}
|
||||
|
||||
#i18nContainer ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#i18nContainer li {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#i18nContainer img {
|
||||
margin: 2px;
|
||||
}
|
||||
@ -1689,7 +1696,7 @@ th.col12 {
|
||||
}
|
||||
.goog-text-highlight {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
} */
|
||||
|
||||
|
@ -31,7 +31,6 @@ $lan = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); ?>
|
||||
<?php $layout->showBar(); ?>
|
||||
<?php endif;?>
|
||||
<?php $layout->showNotification(); ?>
|
||||
<?php $layout->showi18n();?>
|
||||
<?php if($this->getData(['theme', 'menu', 'position']) === 'body-first' || $this->getData(['theme', 'menu', 'position']) === 'top' ): ?>
|
||||
<!-- Menu dans le fond du site avant la bannière -->
|
||||
<!-- Détermine si le menu est fixe en haut de page lorsque l'utilisateur n'est pas connecté -->
|
||||
@ -61,6 +60,7 @@ $lan = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); ?>
|
||||
<?php if($this->getData(['theme', 'header', 'position']) === 'body'): ?>
|
||||
<!-- Bannière dans le fond du site -->
|
||||
<header>
|
||||
<?php $layout->showi18n();?>
|
||||
<?php
|
||||
if ($this->getData(['theme','header','linkHomePage'])){
|
||||
echo "<a href='" . helper::baseUrl(false) . "'>" ;} ?>
|
||||
@ -154,6 +154,7 @@ $lan = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); ?>
|
||||
<?php endif; ?>
|
||||
<!-- Corps de page -->
|
||||
<section>
|
||||
<?php $layout->showi18n();?>
|
||||
<?php
|
||||
// Gabarit :
|
||||
// Récupérer la config de la page courante
|
||||
|
@ -49,22 +49,11 @@ class translate extends common {
|
||||
* 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)
|
||||
]);
|
||||
}
|
||||
// Transmettre le choix au noyau
|
||||
setcookie('ZWII_USER_I18N', $this->getUrl(2), time() + 3600, helper::baseUrl(false, false) , '', helper::isHttps(), true);
|
||||
// Valeurs en sortie sans post
|
||||
$this->addOutput([
|
||||
'redirect' => helper::baseUrl(false)
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user