-
Notifications
You must be signed in to change notification settings - Fork 11
/
eucookielaw.php
29 lines (26 loc) · 1.11 KB
/
eucookielaw.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
* Plugin Name: EUCookieLaw
* Plugin URI: https://github.com/diegolamonica/EUCookieLaw
* Description: A simple WP solution to the European Cookie Law Issue
* Author: Diego La Monica
* Version: 2.7.2
* Author URI: http://diegolamonica.info
* Text Domain: EUCookieLaw
* Domain Path: /languages
*/
/**
* EUCookieLaw: EUCookieLaw a complete solution to accomplish european law requirements about cookie consent
* @version 2.7.2
* @link https://github.com/diegolamonica/EUCookieLaw/
* @author Diego La Monica (diegolamonica) <[email protected]>
* @copyright 2015 Diego La Monica <http://diegolamonica.info>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
require_once dirname(__FILE__) . '/eucookielaw-wp.php';
if(!EUCookieLaw::$initialized && !isset($GLOBALS['eucookielaw'])){
define('EUCOOKIELAW_MAIN_FILE', __FILE__);
$GLOBALS['eucookielaw'] = new EUCookieLaw();
}