The GDPR Framework By Data443 - Version 1.0.10

Version Description

  • Fix fatal error caused by Flamingo integration
Download this release

Release Info

Developer indrek_k
Plugin Icon 128x128 The GDPR Framework By Data443
Version 1.0.10
Comparing to
See all releases

Code changes from version 1.0.9 to 1.0.10

Files changed (3) hide show
  1. gdpr-framework.php +2 -2
  2. readme.txt +8 -3
  3. src/Setup.php +8 -2
gdpr-framework.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: The GDPR Framework
5
  * Plugin URI: https://codelight.eu/wordpress-gdpr-framework/
6
  * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
- * Version: 1.0.9
8
  * Author: Codelight
9
  * Author URI: https://codelight.eu/
10
  * Text Domain: gdpr-framework
@@ -15,7 +15,7 @@ if (!defined('WPINC')) {
15
  die;
16
  }
17
 
18
- define('GDPR_FRAMEWORK_VERSION', '1.0.9');
19
 
20
  /**
21
  * Helper function for prettying up errors
4
  * Plugin Name: The GDPR Framework
5
  * Plugin URI: https://codelight.eu/wordpress-gdpr-framework/
6
  * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
+ * Version: 1.0.10
8
  * Author: Codelight
9
  * Author URI: https://codelight.eu/
10
  * Text Domain: gdpr-framework
15
  die;
16
  }
17
 
18
+ define('GDPR_FRAMEWORK_VERSION', '1.0.10');
19
 
20
  /**
21
  * Helper function for prettying up errors
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
- === The GDPR Framework ===
2
- Contributors: codelight, indrek_k
3
  Donate link: https://www.paypal.me/gdprframework
4
  Tags: gdpr
5
  Requires at least: 4.7
6
  Tested up to: 4.9.5
7
  Requires PHP: 5.6.33
8
- Stable tag: 1.0.9
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
11
 
@@ -13,6 +13,8 @@ Easy to use tools to help make your website GDPR-compliant. Fully documented, ex
13
 
14
  == Description ==
15
 
 
 
16
  Easy to use tools to help make your website GDPR-compliant.
17
 
18
  GDPR is a whopping 88 pages of legal text. Becoming compliant takes a lot more than just adding a couple of checkboxes to your forms! But worry not, we’ve got it covered. With help from [Triniti](https://triniti.eu), one of the top business and IT law firms in Europe, we’ve put together this plugin and written a thorough guide for making WordPress sites compliant with minimal effort.
@@ -93,6 +95,9 @@ This is a very important aspect of GDPR which we will definitely find a solution
93
 
94
  == Changelog ==
95
 
 
 
 
96
  = 1.0.9 =
97
  * Add support for Contact Form 7 Flamingo
98
  * Remove nested the_content filter in the consent area editor to avoid potential conflicts with various plugins (Thanks Gary McPherson!)
1
+ === The GDPR Framework ===
2
+ Contributors: codelight, indrek_k, data443
3
  Donate link: https://www.paypal.me/gdprframework
4
  Tags: gdpr
5
  Requires at least: 4.7
6
  Tested up to: 4.9.5
7
  Requires PHP: 5.6.33
8
+ Stable tag: 1.0.10
9
  License: GPLv3
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
11
 
13
 
14
  == Description ==
15
 
16
+ This plugin is a service of [Data443.com](https://www.data443.com) & ClassiDocs – please stay tuned for more updates!
17
+
18
  Easy to use tools to help make your website GDPR-compliant.
19
 
20
  GDPR is a whopping 88 pages of legal text. Becoming compliant takes a lot more than just adding a couple of checkboxes to your forms! But worry not, we’ve got it covered. With help from [Triniti](https://triniti.eu), one of the top business and IT law firms in Europe, we’ve put together this plugin and written a thorough guide for making WordPress sites compliant with minimal effort.
95
 
96
  == Changelog ==
97
 
98
+ = 1.0.10 =
99
+ * Fix fatal error caused by Flamingo integration
100
+
101
  = 1.0.9 =
102
  * Add support for Contact Form 7 Flamingo
103
  * Remove nested the_content filter in the consent area editor to avoid potential conflicts with various plugins (Thanks Gary McPherson!)
src/Setup.php CHANGED
@@ -90,7 +90,13 @@ class Setup
90
 
91
  // Integrations
92
  gdpr()->make(Themes::class);
93
- gdpr()->make(ContactForm7::class);
94
- gdpr()->make(Flamingo::class);
 
 
 
 
 
 
95
  }
96
  }
90
 
91
  // Integrations
92
  gdpr()->make(Themes::class);
93
+
94
+ if (defined('WPCF7_VERSION')) {
95
+ gdpr()->make(ContactForm7::class);
96
+ }
97
+
98
+ if (defined('FLAMINGO_VERSION')) {
99
+ gdpr()->make(Flamingo::class);
100
+ }
101
  }
102
  }