Version Description
- Fixed text domain loading
Download this release
Release Info
Developer | MooveAgency |
Plugin | GDPR Cookie Compliance |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- moove-actions.php +0 -7
- moove-gdpr.php +6 -2
- readme.txt +3 -0
moove-actions.php
CHANGED
@@ -29,7 +29,6 @@ class Moove_GDPR_Actions {
|
|
29 |
function __construct() {
|
30 |
$this->moove_register_scripts();
|
31 |
$this->moove_register_ajax_actions();
|
32 |
-
add_action( 'plugins_loaded', array( &$this, 'moove_gdpr_load_textdomain' ) );
|
33 |
add_action( 'gdpr_cookie_filter_settings', array( &$this, 'gdpr_remove_cached_scripts' ) );
|
34 |
}
|
35 |
|
@@ -147,12 +146,6 @@ class Moove_GDPR_Actions {
|
|
147 |
return ob_get_clean();
|
148 |
}
|
149 |
|
150 |
-
/**
|
151 |
-
* Load plugin textdomain.
|
152 |
-
*/
|
153 |
-
public function moove_gdpr_load_textdomain() {
|
154 |
-
load_plugin_textdomain( 'gdpr-cookie-compliance', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
155 |
-
}
|
156 |
}
|
157 |
$moove_gdpr_actions_provider = new Moove_GDPR_Actions();
|
158 |
|
29 |
function __construct() {
|
30 |
$this->moove_register_scripts();
|
31 |
$this->moove_register_ajax_actions();
|
|
|
32 |
add_action( 'gdpr_cookie_filter_settings', array( &$this, 'gdpr_remove_cached_scripts' ) );
|
33 |
}
|
34 |
|
146 |
return ob_get_clean();
|
147 |
}
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
}
|
150 |
$moove_gdpr_actions_provider = new Moove_GDPR_Actions();
|
151 |
|
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' );
|
@@ -34,7 +34,11 @@ function moove_gdpr_deactivate() {
|
|
34 |
// update_option( $option_name, array() );
|
35 |
}
|
36 |
|
|
|
37 |
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
add_action('plugins_loaded', 'gdpr_cookie_compliance_load_libs');
|
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.2
|
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.2' );
|
18 |
|
19 |
register_activation_hook( __FILE__ , 'moove_gdpr_activate' );
|
20 |
register_deactivation_hook( __FILE__ , 'moove_gdpr_deactivate' );
|
34 |
// update_option( $option_name, array() );
|
35 |
}
|
36 |
|
37 |
+
add_action( 'plugins_loaded', 'moove_gdpr_load_textdomain' );
|
38 |
|
39 |
+
function moove_gdpr_load_textdomain() {
|
40 |
+
load_plugin_textdomain( 'gdpr-cookie-compliance', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
41 |
+
}
|
42 |
|
43 |
|
44 |
add_action('plugins_loaded', 'gdpr_cookie_compliance_load_libs');
|
readme.txt
CHANGED
@@ -130,6 +130,9 @@ Unfortunately no. This plugin is just a template and needs to be setup by your d
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
133 |
= 1.3.1 =
|
134 |
* Updated plugin premium box
|
135 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.3.2 =
|
134 |
+
* Fixed text domain loading
|
135 |
+
|
136 |
= 1.3.1 =
|
137 |
* Updated plugin premium box
|
138 |
|