48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: EU Cookie Law
|
|
Plugin URI: https://wordpress.org/plugins/eu-cookie-law/
|
|
Description: EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.
|
|
Version: 3.1
|
|
Author: Alex Moss, Marco Milesi
|
|
Author URI: https://wordpress.org/plugins/eu-cookie-law/
|
|
Contributors: alexmoss, Milmor
|
|
Text Domain: eu-cookie-law
|
|
*/
|
|
|
|
function eucookie_start() {
|
|
|
|
load_plugin_textdomain( 'eu-cookie-law' );
|
|
|
|
if ( is_admin() ) {
|
|
require 'class-admin.php';
|
|
} else {
|
|
require 'class-frontend.php';
|
|
}
|
|
|
|
} add_action('init', 'eucookie_start');
|
|
|
|
function ecl_action_admin_init() {
|
|
$arraya_ecl_v = get_plugin_data ( __FILE__ );
|
|
$new_version = $arraya_ecl_v['Version'];
|
|
|
|
if ( version_compare($new_version, get_option('ecl_version_number') ) == 1 ) {
|
|
ecl_check_defaults();
|
|
update_option( 'ecl_version_number', $new_version );
|
|
}
|
|
|
|
if ( eucookie_option('tinymcebutton') ) {
|
|
require 'inc/tinymce.php';
|
|
}
|
|
$eda = __('EU Cookie Law informs users that your site uses cookies, with option to lock scripts before consent. Light + Customizable style.', 'eu-cookie-law');
|
|
} add_action('admin_init', 'ecl_action_admin_init');
|
|
|
|
function ecl_check_defaults() { require 'defaults.php'; }
|
|
|
|
function eucookie_option($name) {
|
|
$options = get_option('peadig_eucookie');
|
|
if ( isset( $options[$name] ) ) { return preg_replace('#<script(.*?)>(.*?)</script>#is', '', $options[$name]); }
|
|
return false;
|
|
}
|
|
|
|
?>
|