Version Description
Download this release
Release Info
Developer | qlstudio |
Plugin | Export User Data |
Version | 2.1.3 |
Comparing to | |
See all releases |
Code changes from version 2.1.2 to 2.1.3
- CHANGELOG.md +4 -0
- export-user-data.php +3 -3
- library/core/core.php +1 -1
- package-lock.json +1 -1
- package.json +1 -1
- readme.md +3 -3
- readme.txt +3 -3
CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
## Changelog ##
|
2 |
|
|
|
|
|
|
|
|
|
3 |
*** 2.1.2 ***
|
4 |
|
5 |
* Readme updates
|
1 |
## Changelog ##
|
2 |
|
3 |
+
*** 2.1.3 ***
|
4 |
+
|
5 |
+
* FIX - wrong name for our own plugin :( thanks @kgagne !
|
6 |
+
|
7 |
*** 2.1.2 ***
|
8 |
|
9 |
* Readme updates
|
export-user-data.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Plugin Name: Export User
|
5 |
* Description: Export User data and metadata.
|
6 |
-
* Version: 2.1.
|
7 |
* Author: Q Studio
|
8 |
* Author URI: http://qstudio.us/
|
9 |
* License: GPL2
|
@@ -25,7 +25,7 @@ if ( ! class_exists( 'q_export_user_data' ) ) {
|
|
25 |
private static $instance = null;
|
26 |
|
27 |
// Plugin Settings
|
28 |
-
const version = '2.1.
|
29 |
static $debug = false;
|
30 |
const text_domain = 'q-export-user-data'; // for translation ##
|
31 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Plugin Name: Export User Data
|
5 |
* Description: Export User data and metadata.
|
6 |
+
* Version: 2.1.3
|
7 |
* Author: Q Studio
|
8 |
* Author URI: http://qstudio.us/
|
9 |
* License: GPL2
|
25 |
private static $instance = null;
|
26 |
|
27 |
// Plugin Settings
|
28 |
+
const version = '2.1.3';
|
29 |
static $debug = false;
|
30 |
const text_domain = 'q-export-user-data'; // for translation ##
|
31 |
|
library/core/core.php
CHANGED
@@ -304,7 +304,7 @@ class core extends \q_export_user_data {
|
|
304 |
#return htmlentities( $string, ENT_COMPAT, 'UTF-8' );
|
305 |
|
306 |
// kick it back via a filter to allow custom formatting ##
|
307 |
-
return \apply_filters( 'q/eud/export/
|
308 |
|
309 |
}
|
310 |
|
304 |
#return htmlentities( $string, ENT_COMPAT, 'UTF-8' );
|
305 |
|
306 |
// kick it back via a filter to allow custom formatting ##
|
307 |
+
return \apply_filters( 'q/eud/export/value', $string );
|
308 |
|
309 |
}
|
310 |
|
package-lock.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
-
"version": "2.1.
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true
|
6 |
}
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
+
"version": "2.1.3",
|
4 |
"lockfileVersion": 1,
|
5 |
"requires": true
|
6 |
}
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
-
"version": "2.1.
|
4 |
"description": "Q Plugins ~ Export User data and metadata",
|
5 |
"author": "Q Studio",
|
6 |
"homepage": "https://qstudio.us",
|
1 |
{
|
2 |
"name": "export-user-data",
|
3 |
+
"version": "2.1.3",
|
4 |
"description": "Q Plugins ~ Export User data and metadata",
|
5 |
"author": "Q Studio",
|
6 |
"homepage": "https://qstudio.us",
|
readme.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
**Requires PHP:** 6.0
|
6 |
**Requires at least:** 5.0
|
7 |
**Tested up to:** 5.5
|
8 |
-
**Stable tag:** 2.1.
|
9 |
**License:** GPLv2
|
10 |
|
11 |
Export users data and metadata to a csv or Excel file
|
@@ -18,11 +18,11 @@ Includes an option to export the users by role, registration date range, usermet
|
|
18 |
|
19 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
20 |
|
21 |
-
In version 2+ we added some additional filters and API controls which control the returned value formats, pulling data from custom post types and
|
22 |
|
23 |
---
|
24 |
|
25 |
-
For feature
|
26 |
|
27 |
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
28 |
|
5 |
**Requires PHP:** 6.0
|
6 |
**Requires at least:** 5.0
|
7 |
**Tested up to:** 5.5
|
8 |
+
**Stable tag:** 2.1.3
|
9 |
**License:** GPLv2
|
10 |
|
11 |
Export users data and metadata to a csv or Excel file
|
18 |
|
19 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
20 |
|
21 |
+
In version 2 + we added some additional filters and API controls which control aspects such as the returned value formats and keys, pulling data from custom post types and builing lists of "common" usermeta fields to export - you can read more on the [Q Studio Website](https://qstudio.us/releases/export-user-data-wordpress-plugin/)
|
22 |
|
23 |
---
|
24 |
|
25 |
+
For feature requests and bug reports, [please use the Q Support Website](https://qstudio.us/support/topic/export-user-data/).
|
26 |
|
27 |
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
28 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: users, export, usermeta, excel
|
|
4 |
Requires PHP: 6.0
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2
|
9 |
|
10 |
Export users data and metadata to a csv or Excel file
|
@@ -17,11 +17,11 @@ Includes an option to export the users by role, registration date range, usermet
|
|
17 |
|
18 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
19 |
|
20 |
-
In version 2 + we added some additional filters and API controls which control the returned value formats, pulling data from custom post types and
|
21 |
|
22 |
---
|
23 |
|
24 |
-
For feature
|
25 |
|
26 |
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
27 |
|
4 |
Requires PHP: 6.0
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 2.1.3
|
8 |
License: GPLv2
|
9 |
|
10 |
Export users data and metadata to a csv or Excel file
|
17 |
|
18 |
This plugin is designed to export user data stored in the 2 standard WordPress user data tables wp_users and wp_usermeta, if you use a plugin which stores data in its own database tables, this plugin will not export this data, without customization.
|
19 |
|
20 |
+
In version 2 + we added some additional filters and API controls which control aspects such as the returned value formats and keys, pulling data from custom post types and builing lists of "common" usermeta fields to export - you can read more on the [Q Studio Website](https://qstudio.us/releases/export-user-data-wordpress-plugin/)
|
21 |
|
22 |
---
|
23 |
|
24 |
+
For feature requests and bug reports, [please use the Q Support Website](https://qstudio.us/support/topic/export-user-data/).
|
25 |
|
26 |
Please do not use the Wordpress.org forum to report bugs, as we no longer monitor or respond to questions there.
|
27 |
|