Version Description
- fix for hidden admin bar
Download this release
Release Info
Developer | qlstudio |
Plugin | Export User Data |
Version | 0.9.3 |
Comparing to | |
See all releases |
Code changes from version 0.9.2 to 0.9.3
- export-user-data.php +6 -11
- readme.md +4 -1
- readme.txt +4 -1
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 BuddyPressX Profile data.
|
7 |
-
Version: 0.9.
|
8 |
Author: Q Studio
|
9 |
Author URI: http://qstudio.us
|
10 |
License: GPL2
|
@@ -19,7 +19,7 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
|
|
19 |
{
|
20 |
|
21 |
// plugin version
|
22 |
-
define( 'Q_EXPORT_USER_DATA_VERSION', '0.9.
|
23 |
|
24 |
// instatiate class via hook, only if inside admin
|
25 |
if ( is_admin() ) {
|
@@ -74,7 +74,7 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
|
|
74 |
|
75 |
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
|
76 |
add_action( 'admin_menu', array( $this, 'add_admin_pages' ) );
|
77 |
-
add_action( 'init', array( $this, 'generate_data' ) );
|
78 |
add_filter( 'q_eud_exclude_data', array( $this, 'exclude_data' ) );
|
79 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_css_and_js' ), 1 );
|
80 |
add_action( 'admin_footer', array( $this, 'jquery' ), 100000 );
|
@@ -147,18 +147,13 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
|
|
147 |
public function generate_data()
|
148 |
{
|
149 |
|
150 |
-
// hack to avoid BP error ##
|
151 |
-
// http://wordpress.org/support/topic/blank-page-107?replies=5#post-5526525
|
152 |
-
if ( !defined ( "DOING_AJAX" ) ) {
|
153 |
-
define( 'DOING_AJAX', true );
|
154 |
-
}
|
155 |
-
|
156 |
if ( ! isset( $_POST['_wpnonce-q-eud-export-user-page_export'] ) ) {
|
157 |
-
|
158 |
return false;
|
159 |
|
160 |
}
|
161 |
-
|
|
|
162 |
check_admin_referer( 'q-eud-export-user-page_export', '_wpnonce-q-eud-export-user-page_export' );
|
163 |
|
164 |
// build argument array ##
|
4 |
Plugin Name: Export User Data
|
5 |
Plugin URI: http://qstudio.us/plugins/
|
6 |
Description: Export User data, metadata and BuddyPressX Profile data.
|
7 |
+
Version: 0.9.3
|
8 |
Author: Q Studio
|
9 |
Author URI: http://qstudio.us
|
10 |
License: GPL2
|
19 |
{
|
20 |
|
21 |
// plugin version
|
22 |
+
define( 'Q_EXPORT_USER_DATA_VERSION', '0.9.3' ); // version ##
|
23 |
|
24 |
// instatiate class via hook, only if inside admin
|
25 |
if ( is_admin() ) {
|
74 |
|
75 |
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
|
76 |
add_action( 'admin_menu', array( $this, 'add_admin_pages' ) );
|
77 |
+
add_action( 'init', array( $this, 'generate_data' ), 1 );
|
78 |
add_filter( 'q_eud_exclude_data', array( $this, 'exclude_data' ) );
|
79 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_css_and_js' ), 1 );
|
80 |
add_action( 'admin_footer', array( $this, 'jquery' ), 100000 );
|
147 |
public function generate_data()
|
148 |
{
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
if ( ! isset( $_POST['_wpnonce-q-eud-export-user-page_export'] ) ) {
|
151 |
+
|
152 |
return false;
|
153 |
|
154 |
}
|
155 |
+
|
156 |
+
// check admin referer ##
|
157 |
check_admin_referer( 'q-eud-export-user-page_export', '_wpnonce-q-eud-export-user-page_export' );
|
158 |
|
159 |
// build argument array ##
|
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:** 3.9.0
|
6 |
-
**Stable tag:** 0.9.
|
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 |
### 0.9.2 ###
|
63 |
* removed $key assignment casting to integer
|
64 |
|
3 |
**Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
**Requires at least:** 3.2
|
5 |
**Tested up to:** 3.9.0
|
6 |
+
**Stable tag:** 0.9.3
|
7 |
**License:** GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
59 |
|
60 |
## Changelog ##
|
61 |
|
62 |
+
### 0.9.3 ###
|
63 |
+
* fix for hidden admin bar
|
64 |
+
|
65 |
### 0.9.2 ###
|
66 |
* removed $key assignment casting to integer
|
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: 3.9.0
|
6 |
-
Stable tag: 0.9.
|
7 |
License: GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
@@ -58,6 +58,9 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 0.9.2 =
|
62 |
* removed $key assignment casting to integer
|
63 |
|
3 |
Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.9.0
|
6 |
+
Stable tag: 0.9.3
|
7 |
License: GPLv2
|
8 |
|
9 |
Export users data, metadata and buddypress xprofile data to a csv or Excel file
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 0.9.3 =
|
62 |
+
* fix for hidden admin bar
|
63 |
+
|
64 |
= 0.9.2 =
|
65 |
* removed $key assignment casting to integer
|
66 |
|