Import users from CSV with meta - Version 1.12.4

Version Description

  • New hooks added to make possible to include new tabs from an addon
Download this release

Release Info

Developer carazo
Plugin Icon 128x128 Import users from CSV with meta
Version 1.12.4
Comparing to
See all releases

Code changes from version 1.12.3.1 to 1.12.4

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.12.3.1
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
@@ -55,7 +55,7 @@ function acui_loader(){
55
  add_action( 'admin_init', 'acui_modify_user_edit_admin' );
56
  add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
57
  add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
58
- add_action( 'acui_cron_process', 'acui_cron_process' );
59
 
60
  if( is_plugin_active( 'buddypress/bp-loader.php' ) && file_exists( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' ) ){
61
  require_once( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' );
@@ -292,6 +292,8 @@ function acui_admin_tabs( $current = 'homepage' ) {
292
  'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
293
  );
294
 
 
 
295
  if( get_option( "acui_settings" ) == "wordpress" )
296
  unset( $tabs['smtp-settings'] );
297
 
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.12.4
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
55
  add_action( 'admin_init', 'acui_modify_user_edit_admin' );
56
  add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
57
  add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
58
+ add_action( 'acui_cron_process', 'acui_cron_process', 10 );
59
 
60
  if( is_plugin_active( 'buddypress/bp-loader.php' ) && file_exists( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' ) ){
61
  require_once( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' );
292
  'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' )
293
  );
294
 
295
+ $tabs = apply_filters( 'acui_tabs', $tabs );
296
+
297
  if( get_option( "acui_settings" ) == "wordpress" )
298
  unset( $tabs['smtp-settings'] );
299
 
importer.php CHANGED
@@ -737,5 +737,9 @@ function acui_options(){
737
  case 'help':
738
  ACUI_Help::message();
739
  break;
 
 
 
 
740
  }
741
  }
737
  case 'help':
738
  ACUI_Help::message();
739
  break;
740
+
741
+ default:
742
+ do_action( 'acui_tab_action_' . $tab );
743
+ break;
744
  }
745
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/codection
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.0.3
7
- Stable tag: 1.12.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -74,6 +74,9 @@ Plugin will automatically detect:
74
 
75
  == Changelog ==
76
 
 
 
 
77
  = 1.12.3.1 =
78
  * Fatal error fixed in frontend tab
79
 
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.0.3
7
+ Stable tag: 1.12.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
74
 
75
  == Changelog ==
76
 
77
+ = 1.12.4 =
78
+ * New hooks added to make possible to include new tabs from an addon
79
+
80
  = 1.12.3.1 =
81
  * Fatal error fixed in frontend tab
82