Version Description
- Updated plugin premium box
Download this release
Release Info
Developer | MooveAgency |
Plugin | GDPR Cookie Compliance |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- controllers/moove-controller.php +1 -1
- moove-gdpr.php +2 -2
- readme.txt +5 -1
- views/moove/admin/settings/plugin_boxes.php +1 -1
controllers/moove-controller.php
CHANGED
@@ -231,7 +231,7 @@ class Moove_GDPR_Controller {
|
|
231 |
$advanced = intval( $_POST['advanced'] ) && intval( $_POST['advanced'] ) === 1 ? true : false;
|
232 |
|
233 |
$transient_key = 'gdpr_cookie_cache';
|
234 |
-
$transient = get_transient( $transient_key );
|
235 |
|
236 |
if ( ! empty( $transient ) ) :
|
237 |
$transient_from_cache = json_decode( $transient, true );
|
231 |
$advanced = intval( $_POST['advanced'] ) && intval( $_POST['advanced'] ) === 1 ? true : false;
|
232 |
|
233 |
$transient_key = 'gdpr_cookie_cache';
|
234 |
+
$transient = apply_filters('gdpr_cookie_script_cache', get_transient( $transient_key ) );
|
235 |
|
236 |
if ( ! empty( $transient ) ) :
|
237 |
$transient_from_cache = json_decode( $transient, true );
|
moove-gdpr.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
|
|
6 |
* Plugin Name: GDPR Cookie Compliance
|
7 |
* Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
|
8 |
* Description: GDPR is an EU wide legislation that specifies how user data should be handled. This plugin has settings that can assist you with GDPR cookie compliance requirements.
|
9 |
-
* Version: 1.3.
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
|
|
14 |
* Text Domain: gdpr-cookie-compliance
|
15 |
*/
|
16 |
|
17 |
-
define( 'MOOVE_GDPR_VERSION', '1.3.
|
18 |
|
19 |
register_activation_hook( __FILE__ , 'moove_gdpr_activate' );
|
20 |
register_deactivation_hook( __FILE__ , 'moove_gdpr_deactivate' );
|
6 |
* Plugin Name: GDPR Cookie Compliance
|
7 |
* Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
|
8 |
* Description: GDPR is an EU wide legislation that specifies how user data should be handled. This plugin has settings that can assist you with GDPR cookie compliance requirements.
|
9 |
+
* Version: 1.3.1
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
14 |
* Text Domain: gdpr-cookie-compliance
|
15 |
*/
|
16 |
|
17 |
+
define( 'MOOVE_GDPR_VERSION', '1.3.1' );
|
18 |
|
19 |
register_activation_hook( __FILE__ , 'moove_gdpr_activate' );
|
20 |
register_deactivation_hook( __FILE__ , 'moove_gdpr_deactivate' );
|
readme.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
=== GDPR Cookie Compliance ===
|
2 |
Contributors: MooveAgency
|
3 |
-
Donate link: https://www.
|
4 |
Stable tag: trunk
|
5 |
Tags: gdpr, compliance, cookies, eu, regulations, european union
|
6 |
Requires at least: 4.5
|
@@ -129,6 +129,10 @@ Unfortunately no. This plugin is just a template and needs to be setup by your d
|
|
129 |
20. GDPR Cookie Compliance - Premium Add-on - Admin - Consent Analytics [Premium]
|
130 |
|
131 |
== Changelog ==
|
|
|
|
|
|
|
|
|
132 |
= 1.3.0 =
|
133 |
* PHP Cookie checker implemented
|
134 |
* PHP function to check Strictly Necessary Cookies: "gdpr_cookie_is_accepted( 'strict' )"
|
1 |
=== GDPR Cookie Compliance ===
|
2 |
Contributors: MooveAgency
|
3 |
+
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LCYMMR4EQ2YVW
|
4 |
Stable tag: trunk
|
5 |
Tags: gdpr, compliance, cookies, eu, regulations, european union
|
6 |
Requires at least: 4.5
|
129 |
20. GDPR Cookie Compliance - Premium Add-on - Admin - Consent Analytics [Premium]
|
130 |
|
131 |
== Changelog ==
|
132 |
+
|
133 |
+
= 1.3.1 =
|
134 |
+
* Updated plugin premium box
|
135 |
+
|
136 |
= 1.3.0 =
|
137 |
* PHP Cookie checker implemented
|
138 |
* PHP function to check Strictly Necessary Cookies: "gdpr_cookie_is_accepted( 'strict' )"
|
views/moove/admin/settings/plugin_boxes.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
<li>Consent Analytics</li>
|
20 |
</ul>
|
21 |
<hr />
|
22 |
-
<strong>Buy Now for only <span
|
23 |
<a href="https://www.mooveagency.com/wordpress-plugins/?checkout=8431" target="_blank" class="plugin-buy-now-btn">Buy Now</a>
|
24 |
</div>
|
25 |
<!-- .box-content -->
|
19 |
<li>Consent Analytics</li>
|
20 |
</ul>
|
21 |
<hr />
|
22 |
+
<strong>Buy Now for only <span>£29</span></strong>
|
23 |
<a href="https://www.mooveagency.com/wordpress-plugins/?checkout=8431" target="_blank" class="plugin-buy-now-btn">Buy Now</a>
|
24 |
</div>
|
25 |
<!-- .box-content -->
|