iubenda Cookie Solution for GDPR - Version 1.15.3

Version Description

  • Tweak: Update and extend the list of blocked scripts
Download this release

Release Info

Developer dfactory
Plugin Icon 128x128 iubenda Cookie Solution for GDPR
Version 1.15.3
Comparing to
See all releases

Code changes from version 1.15.2 to 1.15.3

iubenda-cookie-class/README.md CHANGED
@@ -72,6 +72,9 @@ As a last step the script invokes the `get_converted_page()` of the Page object
72
 
73
  ## Changelog
74
 
 
 
 
75
  ##### 3.0.0
76
  * Tweak: Update and unify iubenda parsing engine
77
 
72
 
73
  ## Changelog
74
 
75
+ ##### 3.1.0
76
+ * Tweak: Update and extend the list of blocked scripts
77
+
78
  ##### 3.0.0
79
  * Tweak: Update and unify iubenda parsing engine
80
 
iubenda-cookie-class/iubenda.class.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * iubenda.class.php
4
- * version: 3.0.0
5
  * @author: Copyright 2018 iubenda
6
  * @license GNU/GPL
7
  * This program is free software: you can redistribute it and/or modify
@@ -26,28 +26,70 @@ class iubendaParser {
26
 
27
  // scripts
28
  public $auto_script_tags = array(
29
- 'platform.twitter.com/widgets.js',
30
  'apis.google.com/js/plusone.js',
31
  'apis.google.com/js/platform.js',
32
- 'connect.facebook.net',
 
 
 
33
  'www.youtube.com/iframe_api',
34
- 'pagead2.googlesyndication.com/pagead/js/adsbygoogle.js',
 
 
 
 
 
35
  'sharethis.com/button/buttons.js',
 
36
  'addthis.com/js/',
37
- 'window.adsbygoogle'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
  );
39
 
40
  // iframes
41
  public $auto_iframe_tags = array(
 
42
  'youtube.com',
43
- 'platform.twitter.com',
44
- 'www.facebook.com/plugins/like.php',
45
- 'www.facebook.com/plugins/likebox.php',
46
  'apis.google.com',
47
- 'player.vimeo.com/video',
48
  'maps.google.it/maps',
49
  'www.google.com/maps/embed',
50
- 'window.adsbygoogle'
 
 
 
 
 
 
 
 
 
51
  );
52
 
53
  private $type = 'page';
1
  <?php
2
  /**
3
  * iubenda.class.php
4
+ * version: 3.1.0
5
  * @author: Copyright 2018 iubenda
6
  * @license GNU/GPL
7
  * This program is free software: you can redistribute it and/or modify
26
 
27
  // scripts
28
  public $auto_script_tags = array(
29
+ // google
30
  'apis.google.com/js/plusone.js',
31
  'apis.google.com/js/platform.js',
32
+ 'googlesyndication.com/pagead/js/adsbygoogle.js',
33
+ 'googlesyndication.com/pagead/show_ads.js',
34
+ 'googleadservices.com/pagead/conversion.js',
35
+ 'google.com/recaptcha/',
36
  'www.youtube.com/iframe_api',
37
+ 'window.adsbygoogle',
38
+ // twitter
39
+ 'platform.twitter.com/widgets.js',
40
+ // facebook
41
+ 'connect.facebook.net',
42
+ // sharethis
43
  'sharethis.com/button/buttons.js',
44
+ // addthis
45
  'addthis.com/js/',
46
+ // disqus
47
+ 'disqus.com/embed.js',
48
+ // scorecardresearch
49
+ 'scorecardresearch.com/beacon.js',
50
+ // neodata
51
+ 'neodatagroup.com',
52
+ // criteo
53
+ 'static.criteo.net/js/',
54
+ // adagio
55
+ 'adagionet.com/uploads/js/sipra.js',
56
+ // rainbowtgx
57
+ 'cdn-wx.rainbowtgx.com/rtgx.js',
58
+ // pinterest
59
+ 'pinterest.com/js/pinit.js',
60
+ // linkpulse
61
+ 'lp4.io',
62
+ // optimizely
63
+ 'cdn.optimizely.com/js/',
64
+ // getsatisfaction
65
+ 'loader.engage.gsfn.us/loader.js',
66
+ // outbrain
67
+ 'outbrain.js',
68
+ // headway
69
+ 'headwayapp.co/widget.js',
70
+ // codepen
71
+ 'codepen.io',
72
+ // freshchat
73
+ 'wchat.freshchat.com'
74
  );
75
 
76
  // iframes
77
  public $auto_iframe_tags = array(
78
+ // google
79
  'youtube.com',
 
 
 
80
  'apis.google.com',
 
81
  'maps.google.it/maps',
82
  'www.google.com/maps/embed',
83
+ 'window.adsbygoogle',
84
+ // twitter
85
+ 'platform.twitter.com',
86
+ // facebook
87
+ 'www.facebook.com/plugins/like.php',
88
+ 'www.facebook.com/plugins/likebox.php',
89
+ // vimeo
90
+ 'player.vimeo.com',
91
+ // 4w
92
+ '4wnet.com'
93
  );
94
 
95
  private $type = 'page';
iubenda_cookie_solution.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: iubenda Cookie Solution for GDPR
4
  Plugin URI: https://www.iubenda.com
5
  Description: iubenda Cookie Solution allows you to make your website GDPR compliant and manage all aspects of cookie law on WP.
6
- Version: 1.15.2
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
@@ -51,7 +51,7 @@ class iubenda_Cookie_Law_Solution {
51
  'menu_position' => 'topmenu',
52
  'deactivation' => false
53
  );
54
- public $version = '1.15.2';
55
  public $no_html = false;
56
  public $links = array();
57
  public $multilang = false;
3
  Plugin Name: iubenda Cookie Solution for GDPR
4
  Plugin URI: https://www.iubenda.com
5
  Description: iubenda Cookie Solution allows you to make your website GDPR compliant and manage all aspects of cookie law on WP.
6
+ Version: 1.15.3
7
  Author: iubenda
8
  Author URI: https://www.iubenda.com
9
  License: MIT License
51
  'menu_position' => 'topmenu',
52
  'deactivation' => false
53
  );
54
+ public $version = '1.15.3';
55
  public $no_html = false;
56
  public $links = array();
57
  public $multilang = false;
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: cookies, cookie law, cookie policy, cookie banner, cookie block, privacy p
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 4.9.8
8
- Stable tag: 1.15.2
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
@@ -113,6 +113,9 @@ We will be very happy to receive feedback here: [Uservoice forum](http://support
113
 
114
  == Changelog ==
115
 
 
 
 
116
  = 1.15.2 =
117
  * Tweak: Update and unify iubenda parsing engine
118
  * Tweak: Polylang Pro support
@@ -305,5 +308,5 @@ We will be very happy to receive feedback here: [Uservoice forum](http://support
305
 
306
  == Upgrade Notice ==
307
 
308
- = 1.15.2 =
309
- * Tweak: Polylang Pro support
5
  Requires at least: 4.0
6
  Requires PHP: 5.2.4
7
  Tested up to: 4.9.8
8
+ Stable tag: 1.15.3
9
  License: MIT License
10
  License URI: http://opensource.org/licenses/MIT
11
 
113
 
114
  == Changelog ==
115
 
116
+ = 1.15.3 =
117
+ * Tweak: Update and extend the list of blocked scripts
118
+
119
  = 1.15.2 =
120
  * Tweak: Update and unify iubenda parsing engine
121
  * Tweak: Polylang Pro support
308
 
309
  == Upgrade Notice ==
310
 
311
+ = 1.15.3 =
312
+ * Tweak: Update and extend the list of blocked scripts