Version Description
- Fixed missing method issue.
Download this release
Release Info
Developer | MooveAgency |
Plugin | GDPR Cookie Compliance |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- dist/scripts/admin.js +0 -0
- moove-actions.php +6 -2
- moove-gdpr.php +2 -2
- readme.txt +3 -0
dist/scripts/admin.js
CHANGED
File without changes
|
moove-actions.php
CHANGED
@@ -163,8 +163,12 @@ class Moove_GDPR_Actions {
|
|
163 |
$return = $content;
|
164 |
if ( class_exists( 'Moove_GDPR_Addon_View' ) ) :
|
165 |
$add_on_view = new Moove_GDPR_Addon_View();
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
168 |
$return = '';
|
169 |
endif;
|
170 |
endif;
|
163 |
$return = $content;
|
164 |
if ( class_exists( 'Moove_GDPR_Addon_View' ) ) :
|
165 |
$add_on_view = new Moove_GDPR_Addon_View();
|
166 |
+
if ( method_exists( $add_on_view, 'check' ) ) :
|
167 |
+
$view_content = $add_on_view->check( 'moove.admin.settings.' . $slug ) ;
|
168 |
+
if ( $view_content ) :
|
169 |
+
$return = '';
|
170 |
+
endif;
|
171 |
+
else :
|
172 |
$return = '';
|
173 |
endif;
|
174 |
endif;
|
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: 3.0.
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
@@ -15,7 +15,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
|
|
15 |
*/
|
16 |
|
17 |
|
18 |
-
define( 'MOOVE_GDPR_VERSION', '3.0.
|
19 |
if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
|
20 |
define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
|
21 |
endif;
|
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: 3.0.1
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
15 |
*/
|
16 |
|
17 |
|
18 |
+
define( 'MOOVE_GDPR_VERSION', '3.0.1' );
|
19 |
if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
|
20 |
define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
|
21 |
endif;
|
readme.txt
CHANGED
@@ -182,6 +182,9 @@ THIS PLUGIN DOES NOT MAKE YOUR WEBSITE COMPLIANT. YOU ARE RESPONSIBLE FOR ENSURI
|
|
182 |
|
183 |
== Changelog ==
|
184 |
|
|
|
|
|
|
|
185 |
= 3.0.0 =
|
186 |
* Licence manager implemented
|
187 |
* Improved admin layout
|
182 |
|
183 |
== Changelog ==
|
184 |
|
185 |
+
= 3.0.1 =
|
186 |
+
* Fixed missing method issue.
|
187 |
+
|
188 |
= 3.0.0 =
|
189 |
* Licence manager implemented
|
190 |
* Improved admin layout
|