| @@ -11,14 +11,14 @@ | ||
| 11 | 11 | * |
| 12 | 12 | * @wordpress-plugin |
| 13 | 13 | * Plugin Name: Import Users |
| 14 | 14 | * Description: Seamlessly create users and import from your CSV data with ease. |
| 15 | - * Version: 1.2.4 | |
| 15 | + * Version: 1.6 | |
| 16 | 16 | * Text Domain: Import-Users |
| 17 | 17 | * Domain Path: /languages |
| 18 | 18 | * Author: Smackcoders |
| 19 | - * Plugin URI: https://goo.gl/kKWPui | |
| 20 | - * Author URI: https://goo.gl/kKWPui | |
| 19 | + * Plugin URI: https://www.smackcoders.com/wp-ultimate-csv-importer-pro.html | |
| 20 | + * Author URI: https://www.smackcoders.com/wordpress.html | |
| 21 | 21 | * License: GPL v3 |
| 22 | 22 | * |
| 23 | 23 | * This program is free software: you can redistribute it and/or modify |
| 24 | 24 | * it under the terms of the GNU General Public License as published by |
| @@ -44,15 +44,18 @@ | ||
| 44 | 44 | require_once('importExtensions/UsersImport.php'); |
| 45 | 45 | require_once('importExtensions/MediaHandling.php'); |
| 46 | 46 | require_once('importExtensions/BSIImport.php'); |
| 47 | 47 | require_once('importExtensions/ImportHelpers.php'); |
| 48 | +require_once('importExtensions/BuddyImport.php'); | |
| 48 | 49 | require_once('importExtensions/WPMembersImport.php'); |
| 50 | +require_once('importExtensions/MultiroleImport.php'); | |
| 51 | + | |
| 49 | 52 | require_once('controllers/SendPassword.php'); |
| 50 | 53 | |
| 51 | 54 | class UserCSVHandler extends UsersImport{ |
| 52 | 55 | |
| 53 | 56 | private static $instance = null,$install; |
| 54 | - public $version = '1.2.4'; | |
| 57 | + public $version = '1.6'; | |
| 55 | 58 | |
| 56 | 59 | public function __construct(){ |
| 57 | 60 | $this->plugin = Plugin::getInstance(); |
| 58 | 61 | } |
| @@ -95,14 +98,10 @@ | ||
| 95 | 98 | * Init UserSmCSVHandlerPro when WordPress Initialises. |
| 96 | 99 | */ |
| 97 | 100 | public function init() { |
| 98 | 101 | if(is_admin()) : |
| 99 | - // Init action. | |
| 100 | 102 | do_action( 'uci_init' ); |
| 101 | 103 | if(is_admin()) { |
| 102 | -#$this->includes(); | |
| 103 | - //SmUCIUserAdminAjax::smuci_ajax_events(); | |
| 104 | -# Removed: De-Register the media sizes | |
| 105 | 104 | } |
| 106 | 105 | endif; |
| 107 | 106 | } |
| 108 | 107 | } |