Fraenkiman 57851cdebb Closes #325
- 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.
2024-02-15 01:13:37 +01:00

10 lines
454 B
PHP

<?php
$baseurl = BLOG_BASEURL;
$lang ['plugin'] ['cookiebanner'] = array(
'bannertext' => 'Jeg bruger <a href="https://da.wikipedia.org/wiki/Cookie" title="Wikipedia" target="_blank">cookies</a> ' . //
'til at sikre, at denne hjemmeside kører pålideligt og sikkert.',
'ok' => 'JEG ER ENIG',
'notice_text' => 'Jeg behandler dine data i overensstemmelse med min <a href="' . $baseurl . 'static.php?page=privacy-policy">privatlivspolitik</a>.'
);
?>