Version Description
- Password documentation updated
- New hooks added for filtering from and to user_registered date in export acui_export_user_registered_from_date and acui_export_user_registered_to_date
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.17.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.17.8.1 to 1.17.8.2
- classes/doc.php +5 -3
- classes/export.php +3 -0
- import-users-from-csv-with-meta.php +1 -2
- readme.txt +5 -1
classes/doc.php
CHANGED
@@ -30,11 +30,13 @@ class ACUI_Doc{
|
|
30 |
</td>
|
31 |
</tr>
|
32 |
<tr valign="top">
|
33 |
-
<th scope="row"><?php _e( "Passwords (column password)", 'import-users-from-csv-with-meta' ); ?></th>
|
34 |
<td><?php _e( "A string that contains user passwords. We have different options for this case:", 'import-users-from-csv-with-meta' ); ?>
|
35 |
<ul style="list-style:disc outside none; margin-left:2em;">
|
36 |
-
|
37 |
-
|
|
|
|
|
38 |
</ul>
|
39 |
</td>
|
40 |
</tr>
|
30 |
</td>
|
31 |
</tr>
|
32 |
<tr valign="top">
|
33 |
+
<th scope="row"><?php _e( "Passwords (column password and user_pass)", 'import-users-from-csv-with-meta' ); ?></th>
|
34 |
<td><?php _e( "A string that contains user passwords. We have different options for this case:", 'import-users-from-csv-with-meta' ); ?>
|
35 |
<ul style="list-style:disc outside none; margin-left:2em;">
|
36 |
+
<li><?php _e( "If you <strong>create a column password</strong>: if cell is empty, password won't be updated; if cell has a value, it will be used.", 'import-users-from-csv-with-meta' ); ?></li>
|
37 |
+
<li><?php _e( "If you <strong>create a column called user_pass</strong>: this will be a hashed password that will be inserted directly in database, this is the best option to move users with their passwords using export tool", 'import-users-from-csv-with-meta' ); ?></li>
|
38 |
+
<li><?php _e( "If you <strong>don't create a column for passwords (nor user_pass nor password)</strong>: passwords will be generated automatically.", 'import-users-from-csv-with-meta' ); ?></li>
|
39 |
+
<li><?php _e( "You should not use both columns in the same import", 'import-users-from-csv-with-meta' ); ?></li>
|
40 |
</ul>
|
41 |
</td>
|
42 |
</tr>
|
classes/export.php
CHANGED
@@ -262,6 +262,9 @@ class ACUI_Exporter{
|
|
262 |
}
|
263 |
|
264 |
$row = apply_filters( 'acui_export_columns', $row, array( 'order_fields_alphabetically' => $order_fields_alphabetically, 'double_encapsulate_serialized_values' => $double_encapsulate_serialized_values ) );
|
|
|
|
|
|
|
265 |
$columns = $row;
|
266 |
$data[] = $row;
|
267 |
$row = array();
|
262 |
}
|
263 |
|
264 |
$row = apply_filters( 'acui_export_columns', $row, array( 'order_fields_alphabetically' => $order_fields_alphabetically, 'double_encapsulate_serialized_values' => $double_encapsulate_serialized_values ) );
|
265 |
+
$from = apply_filters( 'acui_export_user_registered_from_date', $from );
|
266 |
+
$to = apply_filters( 'acui_export_user_registered_to_date', $to );
|
267 |
+
|
268 |
$columns = $row;
|
269 |
$data[] = $row;
|
270 |
$row = array();
|
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.17.8.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -11,7 +11,6 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
11 |
Text Domain: import-users-from-csv-with-meta
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
-
|
15 |
if ( ! defined( 'ABSPATH' ) )
|
16 |
exit;
|
17 |
|
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.17.8.2
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
11 |
Text Domain: import-users-from-csv-with-meta
|
12 |
Domain Path: /languages
|
13 |
*/
|
|
|
14 |
if ( ! defined( 'ABSPATH' ) )
|
15 |
exit;
|
16 |
|
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.8
|
7 |
-
Stable tag: 1.17.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -103,6 +103,10 @@ Plugin will automatically detect:
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
|
|
106 |
= 1.17.8.1 =
|
107 |
* Ready for WordPress 5.8
|
108 |
|
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.8
|
7 |
+
Stable tag: 1.17.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= 1.17.8.2 =
|
107 |
+
* Password documentation updated
|
108 |
+
* New hooks added for filtering from and to user_registered date in export acui_export_user_registered_from_date and acui_export_user_registered_to_date
|
109 |
+
|
110 |
= 1.17.8.1 =
|
111 |
* Ready for WordPress 5.8
|
112 |
|