
- Adds the CookieBanner plugin Features: - Simple discrete CookieBanner, localized - Font and color depend on the style used - When activated, a link to the privacy policy is provided in the contact form and in the comment function. - The static page is provided during setup. The FlatPress admin only has to insert the content. This encourages the FlatPress admin to at least familiarize himself with the legal requirements of his region and to protect himself from possible legal consequences with this plugin.
10 lines
485 B
PHP
10 lines
485 B
PHP
<?php
|
|
$baseurl = BLOG_BASEURL;
|
|
$lang ['plugin'] ['cookiebanner'] = array(
|
|
'bannertext' => 'Soubory <a href="https://cs.wikipedia.org/wiki/HTTP_cookie" title="Wikipedia" target="_blank">cookie</a> ' . //
|
|
'používám k zajištění spolehlivého a bezpečného chodu těchto webových stránek.',
|
|
'ok' => 'OK',
|
|
'notice_text' => 'Vaše údaje zpracovávám v souladu se svými <a href="' . $baseurl . 'static.php?page=privacy-policy">zásadami ochrany osobních údajů</a>.'
|
|
);
|
|
?>
|