Version Description
- New shortcut into WordPress importer and exporter default tools to find this one easier
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.15.3.6 |
Comparing to | |
See all releases |
Code changes from version 1.15.3.5 to 1.15.3.6
- classes/wp-importer.php +25 -0
- import-users-from-csv-with-meta.php +2 -2
- readme.txt +4 -1
classes/wp-importer.php
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit;
|
4 |
+
|
5 |
+
class ACUI_WP_Importer_GUI{
|
6 |
+
function __construct(){
|
7 |
+
add_action( 'admin_init', array( $this, 'register' ) );
|
8 |
+
add_action( 'export_filters', array( $this, 'exporter' ) );
|
9 |
+
}
|
10 |
+
|
11 |
+
function register(){
|
12 |
+
register_importer( 'acui_importer', __( 'Import users or customers (CSV)', 'import-users-from-csv-with-meta' ), __( 'Import <strong>users or customers</strong> to your site via a csv file.', 'import-users-from-csv-with-meta' ), array( $this, 'importer' ) );
|
13 |
+
}
|
14 |
+
|
15 |
+
function importer(){
|
16 |
+
wp_safe_redirect( admin_url( 'tools.php?page=acui' ) );
|
17 |
+
}
|
18 |
+
|
19 |
+
function exporter(){
|
20 |
+
?>
|
21 |
+
<p><?php printf( __( 'You can also export users and customers in CSV format, filtering by user created date, role, choosing the delimiter and some other options using <a href="%s">this exporter</a>.', 'import-users-from-csv-with-meta' ), admin_url( 'tools.php?page=acui&tab=export' ) ); ?></p>
|
22 |
+
<?php
|
23 |
+
}
|
24 |
+
}
|
25 |
+
new ACUI_WP_Importer_GUI();
|
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
|
6 |
-
Version: 1.15.3.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -166,7 +166,7 @@ function acui_get_restricted_fields(){
|
|
166 |
}
|
167 |
|
168 |
function acui_menu() {
|
169 |
-
add_submenu_page( 'tools.php', __( '
|
170 |
}
|
171 |
|
172 |
function acui_plugin_row_meta( $links, $file ){
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins
|
6 |
+
Version: 1.15.3.6
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
166 |
}
|
167 |
|
168 |
function acui_menu() {
|
169 |
+
add_submenu_page( 'tools.php', __( 'Import and export users and customers', 'import-users-from-csv-with-meta' ), __( 'Import and export users and customers', 'import-users-from-csv-with-meta' ), 'create_users', 'acui', 'acui_options' );
|
170 |
}
|
171 |
|
172 |
function acui_plugin_row_meta( $links, $file ){
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://codection.com/go/donate-import-users-from-csv-with-meta/
|
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.3.2
|
7 |
-
Stable tag: 1.15.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -98,6 +98,9 @@ Plugin will automatically detect:
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
|
|
|
|
|
|
101 |
= 1.15.3.5 =
|
102 |
* Bug fixed in "Mail options"
|
103 |
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 1.15.3.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
98 |
|
99 |
== Changelog ==
|
100 |
|
101 |
+
= 1.15.3.6 =
|
102 |
+
* New shortcut into WordPress importer and exporter default tools to find this one easier
|
103 |
+
|
104 |
= 1.15.3.5 =
|
105 |
* Bug fixed in "Mail options"
|
106 |
|