Version Description
- Uninstall file
Download this release
Release Info
Developer | manafactory |
Plugin | Ginger – EU Cookie Law |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.0.1
- readme.txt +5 -2
- uninstall.php +12 -0
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: manafactory, webgrafia, matteobarale
|
|
3 |
Tags: EU Cookie Law, cookie law, block cookie, cookie consent, cookie law, cookie policy, privacy policy, cookie banner, italian cookie law, cookie italia
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 4.4.2
|
6 |
-
Stable tag: 1.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -55,4 +55,7 @@ No, you can be safe from plugins conflict, is developed using Cookies Enabler Js
|
|
55 |
== Changelog ==
|
56 |
|
57 |
= 1.0 =
|
58 |
-
* First stable release.
|
|
|
|
|
|
3 |
Tags: EU Cookie Law, cookie law, block cookie, cookie consent, cookie law, cookie policy, privacy policy, cookie banner, italian cookie law, cookie italia
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 4.4.2
|
6 |
+
Stable tag: 1.0.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
55 |
== Changelog ==
|
56 |
|
57 |
= 1.0 =
|
58 |
+
* First stable release.
|
59 |
+
|
60 |
+
= 1.0.1 =
|
61 |
+
* Uninstall file
|
uninstall.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Uninstall functions
|
4 |
+
*/
|
5 |
+
|
6 |
+
if ( ! current_user_can( 'activate_plugins' ) )
|
7 |
+
return;
|
8 |
+
|
9 |
+
|
10 |
+
delete_option('ginger_general');
|
11 |
+
delete_option('ginger_banner');
|
12 |
+
delete_option('ginger_policy');
|