Version Description
- WP-CLI does not manage our previous version
- New tab "New features" added
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.14.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.14.0.8.1 to 1.14.0.9
- classes/new_features.php +28 -0
- import-users-from-csv-with-meta.php +4 -2
- importer.php +4 -0
- readme.txt +5 -1
classes/new_features.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) exit;
|
4 |
+
|
5 |
+
class ACUI_NewFeatures{
|
6 |
+
public static function message(){
|
7 |
+
?>
|
8 |
+
<div class="postbox">
|
9 |
+
<h3 class="hndle"><span> <?php _e( 'New features', 'import-users-from-csv-with-meta' ); ?></span></h3>
|
10 |
+
|
11 |
+
<div class="inside" style="display: block;">
|
12 |
+
<p><?php _e( 'This is a list of new features that we want to include, but we have not been able to do yet. We have a bussiness and have not so much time for this plugin as we would like to have. If you need some new feature not included in this list, please write us to:', 'import-users-from-csv-with-meta' ); ?> <a href="mailto:contacto@codection.com">contacto@codection.com</a>. <?php _e( 'You can also donate us or talk with us to have some of the next new features done soon.', 'import-users-from-csv-with-meta' ); ?></p>
|
13 |
+
<ul style="list-style: disc; padding-left: 15px;">
|
14 |
+
<li>Change required document format</li>
|
15 |
+
<li>Make a wizard to help importing</li>
|
16 |
+
<li>Include a new step, to a simulation about how it would be the import before doing it</li>
|
17 |
+
<li>Make a website to give a better documentation and tutorials about it</li>
|
18 |
+
<li>Create an online service to be able to provide personal support to some imports</li>
|
19 |
+
<li>Include a button to export the current user data database in CSV format</li>
|
20 |
+
<li>Make this plugin compatible with WP-CLI including some command</li>
|
21 |
+
<li>Include more CSV examples</li>
|
22 |
+
</ul>
|
23 |
+
<div style="clear:both;"></div>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
<?php
|
27 |
+
}
|
28 |
+
}
|
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
-
Version: 1.14.0.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -35,6 +35,7 @@ require_once( "classes/email-options.php" );
|
|
35 |
require_once( "classes/cron.php" );
|
36 |
require_once( "classes/donate.php" );
|
37 |
require_once( "classes/help.php" );
|
|
|
38 |
|
39 |
if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
|
40 |
if ( defined( 'BP_VERSION' ) )
|
@@ -278,7 +279,8 @@ function acui_admin_tabs( $current = 'homepage' ) {
|
|
278 |
'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
|
279 |
'donate' => __( 'Donate/Patreon', 'import-users-from-csv-with-meta' ),
|
280 |
'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
|
281 |
-
'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
|
|
|
282 |
);
|
283 |
|
284 |
$tabs = apply_filters( 'acui_tabs', $tabs );
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
+
Version: 1.14.0.9
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
35 |
require_once( "classes/cron.php" );
|
36 |
require_once( "classes/donate.php" );
|
37 |
require_once( "classes/help.php" );
|
38 |
+
require_once( "classes/new_features.php" );
|
39 |
|
40 |
if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
|
41 |
if ( defined( 'BP_VERSION' ) )
|
279 |
'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
|
280 |
'donate' => __( 'Donate/Patreon', 'import-users-from-csv-with-meta' ),
|
281 |
'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
|
282 |
+
'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' ),
|
283 |
+
'new_features' => __( 'New features', 'import-users-from-csv-with-meta' )
|
284 |
);
|
285 |
|
286 |
$tabs = apply_filters( 'acui_tabs', $tabs );
|
importer.php
CHANGED
@@ -804,6 +804,10 @@ function acui_options(){
|
|
804 |
ACUI_Help::message();
|
805 |
break;
|
806 |
|
|
|
|
|
|
|
|
|
807 |
default:
|
808 |
do_action( 'acui_tab_action_' . $tab );
|
809 |
break;
|
804 |
ACUI_Help::message();
|
805 |
break;
|
806 |
|
807 |
+
case 'new_features':
|
808 |
+
ACUI_NewFeatures::message();
|
809 |
+
break;
|
810 |
+
|
811 |
default:
|
812 |
do_action( 'acui_tab_action_' . $tab );
|
813 |
break;
|
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.2
|
7 |
-
Stable tag: 1.14.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -90,6 +90,10 @@ Plugin will automatically detect:
|
|
90 |
|
91 |
== Changelog ==
|
92 |
|
|
|
|
|
|
|
|
|
93 |
= 1.14.0.8.1 =
|
94 |
* Bug fixed
|
95 |
|
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.2
|
7 |
+
Stable tag: 1.14.0.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 1.14.0.9 =
|
94 |
+
* WP-CLI does not manage our previous version
|
95 |
+
* New tab "New features" added
|
96 |
+
|
97 |
= 1.14.0.8.1 =
|
98 |
* Bug fixed
|
99 |
|