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
539 B
PHP

<?php
$baseurl = BLOG_BASEURL;
$lang ['plugin'] ['cookiebanner'] = array(
'bannertext' => 'このウェブサイトを確実かつ安全に運営するために <a href="https://ja.wikipedia.org/wiki/HTTP_cookie" title="ウィキペディア" target="_blank">クッキー</a>, ' . //
'を使用しています。',
'ok' => 'クッキーを受け入れる',
'notice_text' => '私は、<a href="' . $baseurl . 'static.php?page=privacy-policy">プライバシーポリシ</a>に従ってあなたのデータを処理します。'
);
?>