|
|
|
@ -1483,7 +1483,7 @@ class common {
|
|
|
|
|
$items .= $this->getData(['theme','footer','displaySearch']) === false ? ' class="displayNone" >' : '>';
|
|
|
|
|
$label = empty($this->getData(['locale','searchPageLabel'])) ? 'Rechercher' : $this->getData(['locale','searchPageLabel']);
|
|
|
|
|
if ($this->getData(['locale','searchPageId']) !== 'none') {
|
|
|
|
|
$items .= '<wbr> | <a href="' . helper::baseUrl() . $this->getData(['locale','searchPageId']) . '" data-tippy-content="' . $label . '" >' . $label .'</a>';
|
|
|
|
|
$items .= '<wbr> | <a href="' . helper::baseUrl() . $this->getData(['locale','searchPageId']) . '" data-tippy-content="Rechercher dans le site >' . $label .'</a>';
|
|
|
|
|
}
|
|
|
|
|
$items .= '</span>';
|
|
|
|
|
// Affichage des mentions légales
|
|
|
|
@ -1491,14 +1491,14 @@ class common {
|
|
|
|
|
$items .= $this->getData(['theme','footer','displayLegal']) === false ? ' class="displayNone" >' : '>';
|
|
|
|
|
$label = empty($this->getData(['locale','legalPageLabel'])) ? 'Mentions Légales' : $this->getData(['locale','legalPageLabel']);
|
|
|
|
|
if ($this->getData(['locale','legalPageId']) !== 'none') {
|
|
|
|
|
$items .= '<wbr> | <a href="' . helper::baseUrl() . $this->getData(['locale','legalPageId']) . '" data-tippy-content="' . $label . '">' . $label .'</a>';
|
|
|
|
|
$items .= '<wbr> | <a href="' . helper::baseUrl() . $this->getData(['locale','legalPageId']) . '" data-tippy-content="Page des mentions légales" >' . $label .'</a>';
|
|
|
|
|
}
|
|
|
|
|
$items .= '</span>';
|
|
|
|
|
// Affichage de la gestion des cookies
|
|
|
|
|
$items .= '<span id="footerDisplayCookie"';
|
|
|
|
|
$items .= ($this->getData(['config', 'cookieConsent']) === true && $this->getData(['theme', 'footer', 'displayCookie']) === true) ? '' : ' class="displayNone" >';
|
|
|
|
|
$label = empty($this->getData(['locale', 'cookies', 'cookiesFooterText'])) ? 'Confidentialité' : $this->getData(['locale', 'cookies', 'cookiesFooterText']) ;
|
|
|
|
|
$items .= '<wbr> | <a href="javascript:void(0)" id="footerLinkCookie">'. $label .'</a>';
|
|
|
|
|
$items .= ($this->getData(['config', 'cookieConsent']) === true && $this->getData(['theme', 'footer', 'displayCookie']) === true) ? '>' : ' class="displayNone" >';
|
|
|
|
|
$label = empty($this->getData(['locale', 'cookies', 'cookiesFooterText'])) ? 'Cookies' : $this->getData(['locale', 'cookies', 'cookiesFooterText']) ;
|
|
|
|
|
$items .= '<wbr> | <a href="javascript:void(0)" id="footerLinkCookie" data-tippy-content="Message d\'information relatif aux cookies">'. $label .'</a>';
|
|
|
|
|
$items .= '</span>';
|
|
|
|
|
// Affichage du lien de connexion
|
|
|
|
|
if(
|
|
|
|
|