Version Description
- Bugfix: remove data on plugin deactivation
Download this release
Release Info
Developer | iubenda |
Plugin | iubenda Cookie Solution for GDPR |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- iubenda_cookie_solution.php +6 -6
- readme.txt +6 -3
iubenda_cookie_solution.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
|
6 |
-
Version: 3.0.
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
@@ -92,7 +92,7 @@ class iubenda {
|
|
92 |
)
|
93 |
);
|
94 |
public $base_url;
|
95 |
-
public $version = '3.0.
|
96 |
public $activation = array(
|
97 |
'update_version' => 0,
|
98 |
'update_notice' => true,
|
@@ -330,10 +330,10 @@ class iubenda {
|
|
330 |
public function activation() {
|
331 |
set_transient( 'iub_activation_completed', 1, 3600 );
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
|
338 |
// Send a radar request on plugin activation.
|
339 |
$radar = new RadarService;
|
3 |
Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
|
6 |
+
Version: 3.0.2
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
92 |
)
|
93 |
);
|
94 |
public $base_url;
|
95 |
+
public $version = '3.0.2';
|
96 |
public $activation = array(
|
97 |
'update_version' => 0,
|
98 |
'update_notice' => true,
|
330 |
public function activation() {
|
331 |
set_transient( 'iub_activation_completed', 1, 3600 );
|
332 |
|
333 |
+
add_option( 'iubenda_cookie_law_solution', $this->options['cs'], '', 'no' );
|
334 |
+
add_option( 'iubenda_cookie_law_solution', $this->options['cons'], '', 'no' );
|
335 |
+
update_option( 'iubenda_cookie_law_version', $this->version, 'no' );
|
336 |
+
add_option( 'iubenda_activation_data', $this->activation, '', 'no' );
|
337 |
|
338 |
// Send a radar request on plugin activation.
|
339 |
$radar = new RadarService;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: cookie banner, cookie law, eprivacy, gdpr, ukgdpr, ccpa, caloppa, lgpd, ds
|
|
5 |
Requires at least: 5.0
|
6 |
Requires PHP: 7.0.0
|
7 |
Tested up to: 5.9
|
8 |
-
Stable tag: 3.0.
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
@@ -242,6 +242,9 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
|
|
242 |
|
243 |
== Changelog ==
|
244 |
|
|
|
|
|
|
|
245 |
= 3.0.1 =
|
246 |
* Bugfix: Fix issue after updating to new plugin
|
247 |
|
@@ -650,5 +653,5 @@ The Brazilian General Data Protection Law, the ***Lei Geral de Proteção de Dad
|
|
650 |
|
651 |
== Upgrade Notice ==
|
652 |
|
653 |
-
= 3.0.
|
654 |
-
* Bugfix:
|
5 |
Requires at least: 5.0
|
6 |
Requires PHP: 7.0.0
|
7 |
Tested up to: 5.9
|
8 |
+
Stable tag: 3.0.2
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
242 |
|
243 |
== Changelog ==
|
244 |
|
245 |
+
= 3.0.2 =
|
246 |
+
* Bugfix: remove data on plugin deactivation
|
247 |
+
|
248 |
= 3.0.1 =
|
249 |
* Bugfix: Fix issue after updating to new plugin
|
250 |
|
653 |
|
654 |
== Upgrade Notice ==
|
655 |
|
656 |
+
= 3.0.2 =
|
657 |
+
* Bugfix: remove data on plugin deactivation
|