Version Description
- Moved all internal action hooks to admin_init to allow for internal function loading
Download this release
Release Info
Developer | qlstudio |
Plugin | Export User Data |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- export-user-data.php +5 -4
- readme.md +4 -1
- readme.txt +5 -2
export-user-data.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Export User Data
|
5 |
Plugin URI: http://qstudio.us/plugins/
|
6 |
Description: Export User data, metadata and BuddyPress X-Profile data.
|
7 |
-
Version: 1.3.
|
8 |
Author: Q Studio
|
9 |
Author URI: http://qstudio.us
|
10 |
License: GPL2
|
@@ -20,6 +20,7 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
|
|
20 |
|
21 |
// plugin version
|
22 |
define( 'Q_EUD_HOOK', 'init' ); // wp action to hook to ##
|
|
|
23 |
define( 'Q_EUD_PRIORITY', '1000000' ); // priority ##
|
24 |
define( 'Q_LOG_PREFIX', 'EUD' ); // wp action to hook to ##
|
25 |
|
@@ -114,13 +115,13 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
|
|
114 |
if ( is_admin() ) {
|
115 |
|
116 |
// load BP ##
|
117 |
-
add_action(
|
118 |
|
119 |
// load user options ##
|
120 |
-
add_action(
|
121 |
|
122 |
// run export ##
|
123 |
-
add_action(
|
124 |
|
125 |
// filter exported data - perhaps unused ##
|
126 |
#add_filter( 'q_eud_exclude_data', array( $this, 'exclude_data' ) );
|
4 |
Plugin Name: Export User Data
|
5 |
Plugin URI: http://qstudio.us/plugins/
|
6 |
Description: Export User data, metadata and BuddyPress X-Profile data.
|
7 |
+
Version: 1.3.1
|
8 |
Author: Q Studio
|
9 |
Author URI: http://qstudio.us
|
10 |
License: GPL2
|
20 |
|
21 |
// plugin version
|
22 |
define( 'Q_EUD_HOOK', 'init' ); // wp action to hook to ##
|
23 |
+
define( 'Q_EUD_HOOK_ADMIN', 'admin_init' ); // wp action to hook to ##
|
24 |
define( 'Q_EUD_PRIORITY', '1000000' ); // priority ##
|
25 |
define( 'Q_LOG_PREFIX', 'EUD' ); // wp action to hook to ##
|
26 |
|
115 |
if ( is_admin() ) {
|
116 |
|
117 |
// load BP ##
|
118 |
+
add_action( Q_EUD_HOOK_ADMIN, array( $this, 'load_buddypress' ), Q_EUD_PRIORITY+1 );
|
119 |
|
120 |
// load user options ##
|
121 |
+
add_action( Q_EUD_HOOK_ADMIN, array( $this, 'load_user_options' ), Q_EUD_PRIORITY+2 );
|
122 |
|
123 |
// run export ##
|
124 |
+
add_action( Q_EUD_HOOK_ADMIN, array( $this, 'generate_data' ), Q_EUD_PRIORITY+3 );
|
125 |
|
126 |
// filter exported data - perhaps unused ##
|
127 |
#add_filter( 'q_eud_exclude_data', array( $this, 'exclude_data' ) );
|
readme.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
**Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
**Requires at least:** 3.2
|
5 |
**Tested up to:** 4.4.2
|
6 |
-
**Stable tag:** 1.3.
|
7 |
**License:** GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
@@ -59,6 +59,9 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
|
|
59 |
|
60 |
## Changelog ##
|
61 |
|
|
|
|
|
|
|
62 |
*** 1.3.0 ***
|
63 |
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for te heads-up
|
64 |
|
3 |
**Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
**Requires at least:** 3.2
|
5 |
**Tested up to:** 4.4.2
|
6 |
+
**Stable tag:** 1.3.1
|
7 |
**License:** GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
59 |
|
60 |
## Changelog ##
|
61 |
|
62 |
+
*** 1.3.1 ***
|
63 |
+
* Moved all internal action hooks to admin_init to allow for internal function loading
|
64 |
+
|
65 |
*** 1.3.0 ***
|
66 |
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for te heads-up
|
67 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: qlstudio
|
|
3 |
Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 4.4.2
|
6 |
-
Stable tag: 1.3.
|
7 |
License: GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
@@ -58,8 +58,11 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 1.3.0 =
|
62 |
-
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for
|
63 |
|
64 |
= 1.2.8 =
|
65 |
* New: Added load_buddypress() methods to test for buddypress and load up if missing
|
3 |
Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 4.4.2
|
6 |
+
Stable tag: 1.3.1
|
7 |
License: GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 1.3.1 =
|
62 |
+
* Moved all internal action hooks to admin_init to allow for internal function loading
|
63 |
+
|
64 |
= 1.3.0 =
|
65 |
+
* Added extra data sanitization before outputting to file - thanks to Hely Shah <helyhshah@gmail.com> for the heads-up
|
66 |
|
67 |
= 1.2.8 =
|
68 |
* New: Added load_buddypress() methods to test for buddypress and load up if missing
|