Skip to content

Instantly share code, notes, and snippets.

@Xiradorn
Last active August 29, 2015 14:21
Show Gist options
  • Save Xiradorn/d4c8e27523d7f4b852f8 to your computer and use it in GitHub Desktop.
Save Xiradorn/d4c8e27523d7f4b852f8 to your computer and use it in GitHub Desktop.
Cookiechoises for phpbb whit adaptive language
<!-- INIZIO - CookiePolicy AutoLocalizzante da Sir Xiradorn -->
<!--Variante percorso ROOT con variabile template - Sir Xiradorn--><script src="{T_TEMPLATE_PATH}/cookiechoices.js"></script>
<script>
/* Italiano */
var testoIta = 'Questo Forum utilizza cookie; accedendo, cliccando su "Accetto" o su questo messaggio, acconsenti a scaricare sul tuo browser, tutte le tipologie di cookie presenti in questo Forum.';
var accettaIta = 'Accetto';
var infoIta = 'Ulteriori informazioni';
/* Inglese */
var testoEng = 'This Forum use cookies; If you are entered and have clicked on "Agree" or on this message, you consent, on your browser, all kinds of cookies appear in this Forum';
var accettaEng = 'Agree';
var infoEng = 'More Informations';
document.addEventListener('DOMContentLoaded', function(event) {
cookieChoices.showCookieConsentBar(<!-- IF S_USER_LANG == 'it' -->testoIta<!-- ELSEIF S_USER_LANG == 'en-gb' -->testoEng<!-- ENDIF -->, <!-- IF S_USER_LANG == 'it' -->accettaIta<!-- ELSEIF S_USER_LANG == 'en-gb' -->accettaEng<!-- ENDIF -->, <!-- IF S_USER_LANG == 'it' -->infoIta<!-- ELSEIF S_USER_LANG == 'en-gb' -->infoEng<!-- ENDIF -->, './ucp.php?mode=privacy');
});
</script>
<!-- IF S_USER_LANG == 'it' -->
<div id="cookieChoiceInfo" style="position: fixed; width: 100%; background-color: rgb(238, 238, 238); margin: 0px; left: 0px; top: 0px; padding: 4px; z-index: 1000; text-align: center;">
<span>Questo Forum utilizza cookie; accedendo, cliccando su "Accetto" o su questo messaggio, acconsenti a scaricare sul tuo browser, tutte le tipologie di cookie presenti in questo Forum.</span>
<a href="./ucp.php?mode=privacy" target="_blank" style="margin-left: 8px;">Ulteriori informazioni</a>
<a id="cookieChoiceDismiss" href="#" style="margin-left: 24px;">Accetto</a>
</div>
<!-- ELSEIF S_USER_LANG == 'en-gb' -->
<div id="cookieChoiceInfo" style="position: fixed; width: 100%; background-color: rgb(238, 238, 238); margin: 0px; left: 0px; top: 0px; padding: 4px; z-index: 1000; text-align: center;">
<span>This Forum use cookies; If you are entered and have clicked on "Agree" or on this message, you consent, on your browser, all kinds of cookies appear in this Forum</span>
<a href="./ucp.php?mode=privacy" target="_blank" style="margin-left: 8px;">More Informations</a>
<a id="cookieChoiceDismiss" href="#" style="margin-left: 24px;">Agree</a>
</div>
<!-- ENDIF -->
<!-- FINE - CookiePolicy AutoLocalizzante da Sir Xiradorn -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment