 57851cdebb
			
		
	
	
		57851cdebb
		
	
	
	
	
		
			
			- 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
		
	
	
		
			414 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			414 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| $baseurl = BLOG_BASEURL;
 | |
| $lang ['plugin'] ['cookiebanner'] = array(
 | |
| 	'bannertext' => 'I use <a href="https://en.wikipedia.org/wiki/HTTP_cookie" title="Wikipedia" target="_blank">cookies</a>, ' . //
 | |
| 		'so that this website runs reliably and securely.',
 | |
| 	'ok' => 'Okay',
 | |
| 	'notice_text' => 'I process your data according to my <a href="' . $baseurl . 'static.php?page=dataprotection">privacy policy</a>.'
 | |
| );
 | |
| ?>
 |