Import users from CSV with meta - Version 1.15.2

Version Description

= 1.0 = * First installation

Download this release

Release Info

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

Code changes from version 1.15.1.1 to 1.15.2

Files changed (46) hide show
  1. classes/export.php +56 -9
  2. import-users-from-csv-with-meta.php +1 -1
  3. trunk/addons/allow-multiple-accounts.php +48 -0
  4. trunk/addons/buddypress.php +47 -0
  5. trunk/addons/customer-area.php +66 -0
  6. trunk/addons/groups.php +56 -0
  7. trunk/addons/indeed-ultimate-membership-pro.php +54 -0
  8. trunk/addons/new-user-approve.php +29 -0
  9. trunk/addons/pmpro.php +142 -0
  10. trunk/addons/users-group.php +56 -0
  11. trunk/addons/woocommerce-membership.php +118 -0
  12. trunk/addons/wp-lms-course.php +48 -0
  13. trunk/addons/wp-members.php +53 -0
  14. trunk/addons/wp-user-avatar.php +41 -0
  15. trunk/addons/wp-users-group.php +56 -0
  16. trunk/assets/codection-inmotion.png +0 -0
  17. trunk/assets/email-template-attachment-admin.js +78 -0
  18. trunk/assets/icon_coffee.png +0 -0
  19. trunk/assets/iontics_logo.svg +29 -0
  20. trunk/assets/style.css +83 -0
  21. trunk/assets/webempresa_logo.png +0 -0
  22. trunk/classes/columns.php +44 -0
  23. trunk/classes/cron.php +281 -0
  24. trunk/classes/doc.php +155 -0
  25. trunk/classes/donate.php +34 -0
  26. trunk/classes/email-options.php +116 -0
  27. trunk/classes/email-templates.php +157 -0
  28. trunk/classes/export.php +231 -0
  29. trunk/classes/frontend.php +147 -0
  30. trunk/classes/help.php +19 -0
  31. trunk/classes/homepage.php +307 -0
  32. trunk/classes/meta-keys.php +126 -0
  33. trunk/classes/new_features.php +28 -0
  34. trunk/csv_example.png +0 -0
  35. trunk/icon_coffee.png +0 -0
  36. trunk/import-users-from-csv-with-meta.php +758 -0
  37. trunk/importer.php +809 -0
  38. trunk/include/shortcode-frontend.php +52 -0
  39. trunk/languages/import-users-from-csv-with-meta-de_DE.mo +0 -0
  40. trunk/languages/import-users-from-csv-with-meta-de_DE.po +1151 -0
  41. trunk/languages/import-users-from-csv-with-meta-fr_FR.mo +0 -0
  42. trunk/languages/import-users-from-csv-with-meta-fr_FR.po +1188 -0
  43. trunk/languages/import-users-from-csv-with-meta.pot +1067 -0
  44. trunk/readme.txt +907 -0
  45. trunk/test.csv +2 -0
  46. trunk/wpml-config.xml +9 -0
classes/export.php CHANGED
@@ -39,6 +39,23 @@ class ACUI_Exporter{
39
  <label>to <input name="to" type="date" value=""/></label>
40
  </td>
41
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  <tr valign="top">
43
  <th scope="row"><?php _e( 'Download CSV file with users', 'import-users-from-csv-with-meta' ); ?></th>
44
  <td>
@@ -61,6 +78,21 @@ class ACUI_Exporter{
61
  <?php
62
  }
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  function export_users_csv(){
65
  check_ajax_referer( 'codection-security', 'security' );
66
 
@@ -70,10 +102,30 @@ class ACUI_Exporter{
70
  $role = sanitize_text_field( $_POST['role'] );
71
  $from = sanitize_text_field( $_POST['from'] );
72
  $to = sanitize_text_field( $_POST['to'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
  $data = array();
75
  $row = array();
76
-
77
  // header
78
  foreach ( $this->user_data as $key ) {
79
  $row[] = $key;
@@ -92,16 +144,11 @@ class ACUI_Exporter{
92
  $userdata = get_userdata( $user );
93
 
94
  foreach ( $this->user_data as $key ) {
95
- $row[] = $userdata->data->{$key};
96
  }
97
 
98
  foreach ( $this->get_user_meta_key() as $key ) {
99
- $current_data = get_user_meta( $user, $key, true );
100
-
101
- if( is_array( $current_data ) )
102
- $row[] = serialize( $current_data );
103
- else
104
- $row[] = $current_data;
105
  }
106
 
107
  $data[] = $row;
@@ -112,7 +159,7 @@ class ACUI_Exporter{
112
  $file = fopen( $this->path_csv, "w" );
113
 
114
  foreach ( $data as $line ) {
115
- fputcsv( $file, $line );
116
  }
117
 
118
  fclose( $file );
39
  <label>to <input name="to" type="date" value=""/></label>
40
  </td>
41
  </tr>
42
+ <tr valign="top">
43
+ <th scope="row"><?php _e( 'Delimiter', 'import-users-from-csv-with-meta' ); ?></th>
44
+ <td>
45
+ <select name="delimiter">
46
+ <option value='COMMA'><?php _e( 'Comma', 'import-users-from-csv-with-meta' ); ?></option>
47
+ <option value='COLON'><?php _e( 'Colon', 'import-users-from-csv-with-meta' ); ?></option>
48
+ <option value='SEMICOLON'><?php _e( 'Semicolon', 'import-users-from-csv-with-meta' ); ?></option>
49
+ <option value='TAB'><?php _e( 'Tab', 'import-users-from-csv-with-meta' ); ?></option>
50
+ </select>
51
+ </td>
52
+ </tr>
53
+ <tr valign="top">
54
+ <th scope="row"><?php _e( 'Datetime format', 'import-users-from-csv-with-meta' ); ?></th>
55
+ <td>
56
+ <input name="datetime_format" type="text" value="Y-m-d H:i:s"/>
57
+ </td>
58
+ </tr>
59
  <tr valign="top">
60
  <th scope="row"><?php _e( 'Download CSV file with users', 'import-users-from-csv-with-meta' ); ?></th>
61
  <td>
78
  <?php
79
  }
80
 
81
+ function prepare( $key, $value, $datetime_format ){
82
+ $timestamp_keys = array( 'wc_last_active' );
83
+
84
+ if( is_array( $value ) )
85
+ return serialize( $value );
86
+ elseif( strtotime( $value ) ){ // dates in datetime format
87
+ return date( $datetime_format, strtotime( $value ) );
88
+ }
89
+ elseif( in_array( $key, $timestamp_keys) ){ // dates in timestamp format
90
+ return date( $datetime_format, $value );
91
+ }
92
+ else
93
+ return $value;
94
+ }
95
+
96
  function export_users_csv(){
97
  check_ajax_referer( 'codection-security', 'security' );
98
 
102
  $role = sanitize_text_field( $_POST['role'] );
103
  $from = sanitize_text_field( $_POST['from'] );
104
  $to = sanitize_text_field( $_POST['to'] );
105
+ $delimiter = sanitize_text_field( $_POST['delimiter'] );
106
+ $datetime_format = sanitize_text_field( $_POST['datetime_format'] );
107
+
108
+ switch ( $delimiter ) {
109
+ case 'COMMA':
110
+ $delimiter = ",";
111
+ break;
112
+
113
+ case 'COLON':
114
+ $delimiter = ":";
115
+ break;
116
+
117
+ case 'SEMICOLON':
118
+ $delimiter = ";";
119
+ break;
120
+
121
+ case 'TAB':
122
+ $delimiter = "\t";
123
+ break;
124
+ }
125
 
126
  $data = array();
127
  $row = array();
128
+
129
  // header
130
  foreach ( $this->user_data as $key ) {
131
  $row[] = $key;
144
  $userdata = get_userdata( $user );
145
 
146
  foreach ( $this->user_data as $key ) {
147
+ $row[] = $this->prepare( $key, $userdata->data->{$key}, $datetime_format );
148
  }
149
 
150
  foreach ( $this->get_user_meta_key() as $key ) {
151
+ $row[] = $this->prepare( $key, get_user_meta( $user, $key, true ), $datetime_format );
 
 
 
 
 
152
  }
153
 
154
  $data[] = $row;
159
  $file = fopen( $this->path_csv, "w" );
160
 
161
  foreach ( $data as $line ) {
162
+ fputcsv( $file, $line, $delimiter );
163
  }
164
 
165
  fclose( $file );
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.15.1.1
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
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.15.1.2
7
  Author: codection
8
  Author URI: https://codection.com
9
  License: GPL2
trunk/addons/allow-multiple-accounts.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'allow-multiple-accounts/allow-multiple-accounts.php' ) ){
6
+ add_action( 'acui_tab_import_before_import_button', 'acui_allow_multiple_accounts_tab_import_before_import_button' );
7
+ add_action( 'acui_tab_cron_before_log', 'acui_allow_multiple_accounts_tab_cron_before_log' );
8
+ }
9
+
10
+ function acui_allow_multiple_accounts_tab_import_before_import_button(){
11
+ ?>
12
+ <h2><?php _e( 'Allow multiple accounts compatibility', 'import-users-from-csv-with-meta'); ?></h2>
13
+
14
+ <table class="form-table">
15
+ <tbody>
16
+ <tr class="form-field form-required">
17
+ <th scope="row"><label><?php _e( 'Repeated email in different users?', 'import-users-from-csv-with-meta' ); ?></label></th>
18
+ <td>
19
+ <select name="allow_multiple_accounts">
20
+ <option value="not_allowed"><?php _e( 'Not allowed', 'import-users-from-csv-with-meta' ); ?></option>
21
+ <option value="allowed"><?php _e( 'Allowed', 'import-users-from-csv-with-meta' ); ?></option>
22
+ </select>
23
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/allow-multiple-accounts/"><?php _e( 'Allow Multiple Accounts', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta'); ?>)</strong>. <?php _e('Allow multiple user accounts to be created having the same email address.','import-users-from-csv-with-meta' ); ?></p>
24
+ </td>
25
+ </tr>
26
+ </tbody>
27
+ </table>
28
+ <?php
29
+ }
30
+
31
+ function acui_allow_multiple_accounts_tab_cron_before_log(){
32
+ ?>
33
+ <h2><?php _e( 'Allow Multiple Accounts compatibility', 'import-users-from-csv-with-meta'); ?></h2>
34
+
35
+ <table class="form-table">
36
+ <tbody>
37
+
38
+ <tr class="form-field form-required">
39
+ <th scope="row"><label><?php _e( 'Repeated email in different users?', 'import-users-from-csv-with-meta' ); ?></label></th>
40
+ <td>
41
+ <input type="checkbox" name="allow_multiple_accounts" value="yes" <?php if( $allow_multiple_accounts == "allowed" ) echo "checked='checked'"; ?>/>
42
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/allow-multiple-accounts/"><?php _e( 'Allow Multiple Accounts', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta'); ?>)</strong>. <?php _e('Allow multiple user accounts to be created having the same email address.','import-users-from-csv-with-meta' ); ?></p>
43
+ </td>
44
+ </tr>
45
+ </tbody>
46
+ </table>
47
+ <?php
48
+ }
trunk/addons/buddypress.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
6
+ add_action( 'acui_tab_import_before_import_button', 'acui_buddypress_tab_import_before_import_button' );
7
+ }
8
+
9
+ function acui_buddypress_tab_import_before_import_button(){
10
+ if( !class_exists( "BP_XProfile_Group" ) ){
11
+ require_once( WP_PLUGIN_DIR . "/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php" );
12
+ }
13
+
14
+ $buddypress_fields = array();
15
+ $buddypress_types=array();
16
+ $profile_groups = BP_XProfile_Group::get( array( 'fetch_fields' => true ) );
17
+
18
+ if ( !empty( $profile_groups ) ) {
19
+ foreach ( $profile_groups as $profile_group ) {
20
+ if ( !empty( $profile_group->fields ) ) {
21
+ foreach ( $profile_group->fields as $field ) {
22
+ $buddypress_fields[] = $field->name;
23
+ $buddypress_types[] = $field->type;
24
+ }
25
+ }
26
+ }
27
+ }
28
+ ?>
29
+ <h2><?php _e( 'BuddyPress compatibility', 'import-users-from-csv-with-meta'); ?></h2>
30
+
31
+ <table class="form-table">
32
+ <tbody>
33
+ <tr class="form-field form-required">
34
+ <th scope="row"><label><?php _e( 'BuddyPress users', 'import-users-from-csv-with-meta' ); ?></label></th>
35
+ <td><?php _e( 'You can insert any profile from BuddyPress using his name as header. Plugin will check, before import, which fields are defined in BuddyPress and will assign it in the update. You can use this fields:', 'import-users-from-csv-with-meta' ); ?>
36
+ <ul style="list-style:disc outside none;margin-left:2em;">
37
+ <?php foreach ( $buddypress_fields as $buddypress_field ): ?><li><?php echo $buddypress_field; ?></li><?php endforeach; ?>
38
+ </ul>
39
+ <?php _e( 'Remember that all date fields have to be imported using a format like this: 2016-01-01 00:00:00', 'import-users-from-csv-with-meta' ); ?>
40
+
41
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/buddypress/">BuddyPress</a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?></strong>.)</p>
42
+ </td>
43
+ </tr>
44
+ </tbody>
45
+ </table>
46
+ <?php
47
+ }
trunk/addons/customer-area.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'customer-area/customer-area.php' ) && is_plugin_active( 'customer-area-managed-groups/customer-area-managed-groups.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_cumg_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_cumg_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_cumg_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_cumg_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'customer_area_groups' ) );
13
+ }
14
+
15
+ function acui_cumg_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "WP Customer Area Managed Groups is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td>
20
+ <?php _e( "You can import user groups and assign them to the users using the next format", 'import-users-from-csv-with-meta' ); ?>.
21
+ <ul style="list-style:disc outside none; margin-left:2em;">
22
+ <li><?php _e( "customer_area_groups as the column title", 'import-users-from-csv-with-meta' ); ?></li>
23
+ <li><?php _e( "The value of each cell will be the slug of the group", 'import-users-from-csv-with-meta' ); ?></li>
24
+ <li><?php _e( "If you want to import multiple values, you can use a list using commas to separate items", 'import-users-from-csv-with-meta' ); ?></li>
25
+ </ul>
26
+ </td>
27
+ </tr>
28
+ <?php
29
+ }
30
+
31
+ function acui_cumg_post_import_single_user( $headers, $row, $user_id ){
32
+ $pos = array_search( 'customer_area_groups', $headers );
33
+
34
+ if( $pos === FALSE )
35
+ return;
36
+
37
+ $user_groups = explode( ',', $row[ $pos ] );
38
+ $user_groups = array_filter( $user_groups, function( $value ){ return $value !== ''; } );
39
+ $new_group_ids = array();
40
+
41
+ foreach ( $user_groups as $user_group ) {
42
+ $group = get_page_by_path( $user_group, OBJECT, 'cuar_user_group' );
43
+
44
+ if( is_object( $group ) )
45
+ $new_group_ids[] = $group->ID;
46
+ else{
47
+ echo "$group is not a name of a group in Customer Area<br/>";
48
+ return;
49
+ }
50
+ }
51
+
52
+ $object_addon = new CUAR_UserGroupAddOn();
53
+ $user_groups = $object_addon->get_groups_of_user( $user_id );
54
+
55
+ // Remove from current groups that are not selected anymore
56
+ foreach ( $user_groups as $group ) {
57
+ if ( !in_array( $group->ID, $new_group_ids ) ) {
58
+ $object_addon->remove_user_from_group( $user_id, $group->ID );
59
+ }
60
+ }
61
+
62
+ // Add to all groups
63
+ foreach ( $new_group_ids as $new_group_id ) {
64
+ $object_addon->add_user_to_group( $user_id, $new_group_id );
65
+ }
66
+ }
trunk/addons/groups.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'groups/groups.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_g_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_g_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_g_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_g_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'group_id' ) );
13
+ }
14
+
15
+ function acui_g_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "Groups is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td>
20
+ <?php _e( "You can import user and assign them to the users groups using the next format", 'import-users-from-csv-with-meta' ); ?>.
21
+ <ul style="list-style:disc outside none; margin-left:2em;">
22
+ <li><?php _e( "group_id as the column title", 'import-users-from-csv-with-meta' ); ?></li>
23
+ <li><?php _e( "The value of each cell will be the ID of the group that you want to assign to this user", 'import-users-from-csv-with-meta' ); ?></li>
24
+ <li><?php _e( "If you want to import multiple values, you can use a list using commas to separate items", 'import-users-from-csv-with-meta' ); ?></li>
25
+ </ul>
26
+ </td>
27
+ </tr>
28
+ <?php
29
+ }
30
+
31
+ function acui_g_post_import_single_user( $headers, $row, $user_id ){
32
+ $pos = array_search( 'group_id', $headers );
33
+
34
+ if( $pos === FALSE )
35
+ return;
36
+
37
+ // groups that appears in the CSV
38
+ $user_groups_csv = explode( ',', $row[ $pos ] );
39
+ $user_groups_csv = array_filter( $user_groups_csv, function( $value ){ return $value !== ''; } );
40
+
41
+ // groups that user belongs to
42
+ $groups_user = new Groups_User( $user_id );
43
+ $user_group_ids = $groups_user->group_ids;
44
+
45
+ // first we look into all current user groups, if they do not appear in CSV it will be removed
46
+ foreach ( $user_group_ids as $user_group_id ) {
47
+ if( !in_array( $user_group_id, $user_groups_csv ) )
48
+ Groups_User_Group::delete( $user_id, $user_group_id );
49
+ }
50
+
51
+ // finally we loop into groups that are present in CSV data, if they already exists, we do nothing, if not, we add it
52
+ foreach ( $user_groups_csv as $user_group_csv ) {
53
+ if( !in_array( $user_group_csv, $user_group_ids ) )
54
+ Groups_User_Group::create( array( 'user_id' => $user_id, 'group_id' => $user_group_csv ) );
55
+ }
56
+ }
trunk/addons/indeed-ultimate-membership-pro.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'indeed-membership-pro/indeed-membership-pro.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_iump_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_iump_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_iump_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_iump_fields() {
12
+ $iump_fields = array(
13
+ "level"
14
+ );
15
+
16
+ return $iump_fields;
17
+ }
18
+
19
+ function acui_iump_restricted_fields( $acui_restricted_fields ){
20
+ return array_merge( $acui_restricted_fields, acui_iump_fields() );
21
+ }
22
+
23
+ function acui_iump_documentation_after_plugins_activated(){
24
+ ?>
25
+ <tr valign="top">
26
+ <th scope="row"><?php _e( "Indeed Ultimate Membership Pro is activated", 'import-users-from-csv-with-meta' ); ?></th>
27
+ <td>
28
+ <?php _e( "You can use the columns in the CSV in order to import data from Indeed Ultimate Membership Pro.", 'import-users-from-csv-with-meta' ); ?>.
29
+ <ul style="list-style:disc outside none; margin-left:2em;">
30
+ <li>level: you have to use the level id, you can find it in "Levels" tab</li>
31
+ </ul>
32
+ </td>
33
+ </tr>
34
+ <?php
35
+ }
36
+
37
+ function acui_iump_post_import_single_user( $headers, $row, $user_id ){
38
+ global $wpdb;
39
+
40
+ $keys = acui_iump_fields();
41
+ $columns = array();
42
+
43
+ foreach ( $keys as $key ) {
44
+ $pos = array_search( $key, $headers );
45
+
46
+ if( $pos !== FALSE ){
47
+ $columns[ $key ] = $pos;
48
+ $$key = $row[ $columns[ $key ] ];
49
+ }
50
+ }
51
+
52
+ if( !empty( $level ) )
53
+ $level = ihc_do_complete_level_assign_from_ap( $user_id, $level );
54
+ }
trunk/addons/new-user-approve.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'new-user-approve/new-user-approve.php' ) ){
6
+ add_action( 'acui_tab_import_before_import_button', 'acui_new_user_approve_tab_import_before_import_button' );
7
+ }
8
+
9
+ function acui_new_user_approve_tab_import_before_import_button(){
10
+ ?>
11
+ <h2><?php _e( 'New User Approve compatibility', 'import-users-from-csv-with-meta'); ?></h2>
12
+
13
+ <table class="form-table">
14
+ <tbody>
15
+ <tr class="form-field form-required">
16
+ <th scope="row"><label><?php _e( 'Approve users at the same time is being created', 'import-users-from-csv-with-meta' ); ?></label></th>
17
+ <td>
18
+ <select name="approve_users_new_user_appove">
19
+ <option value="no_approve"><?php _e( 'Do not approve users', 'import-users-from-csv-with-meta' ); ?></option>
20
+ <option value="approve"><?php _e( 'Approve users when they are being imported', 'import-users-from-csv-with-meta' ); ?></option>
21
+ </select>
22
+
23
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://es.wordpress.org/plugins/new-user-approve/"><?php _e( 'New User Approve', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?></strong>.</p>
24
+ </td>
25
+ </tr>
26
+ </tbody>
27
+ </table>
28
+ <?php
29
+ }
trunk/addons/pmpro.php ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'paid-memberships-pro/paid-memberships-pro.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_pmpro_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_pmpro_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_pmpro_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_pmpro_fields() {
12
+ $pmpro_fields = array(
13
+ "membership_id",
14
+ "membership_code_id",
15
+ "membership_discount_code",
16
+ "membership_initial_payment",
17
+ "membership_billing_amount",
18
+ "membership_cycle_number",
19
+ "membership_cycle_period",
20
+ "membership_billing_limit",
21
+ "membership_trial_amount",
22
+ "membership_trial_limit",
23
+ "membership_status",
24
+ "membership_startdate",
25
+ "membership_enddate",
26
+ "membership_subscription_transaction_id",
27
+ "membership_payment_transaction_id",
28
+ "membership_gateway",
29
+ "membership_affiliate_id",
30
+ "membership_timestamp"
31
+ );
32
+
33
+ return $pmpro_fields;
34
+ }
35
+
36
+ function acui_pmpro_restricted_fields( $acui_restricted_fields ){
37
+ return array_merge( $acui_restricted_fields, acui_pmpro_fields() );
38
+ }
39
+
40
+ function acui_pmpro_documentation_after_plugins_activated(){
41
+ ?>
42
+ <tr valign="top">
43
+ <th scope="row"><?php _e( "Paid Mebership Pro is activated", 'import-users-from-csv-with-meta' ); ?></th>
44
+ <td>
45
+ <?php _e( "You can use the columns in the CSV in order to import data from Paid Membership Pro plugin.", 'import-users-from-csv-with-meta' ); ?>.
46
+ <ul style="list-style:disc outside none; margin-left:2em;">
47
+ <?php foreach ( acui_pmpro_fields() as $key => $value): ?>
48
+ <li><?php echo $value; ?></li>
49
+ <?php endforeach; ?>
50
+ </ul>
51
+ </td>
52
+ </tr>
53
+ <?php
54
+ }
55
+
56
+ function acui_pmpro_post_import_single_user( $headers, $row, $user_id ){
57
+ global $wpdb;
58
+
59
+ $keys = acui_pmpro_fields();
60
+ $columns = array();
61
+
62
+ foreach ( $keys as $key ) {
63
+ $pos = array_search( $key, $headers );
64
+
65
+ if( $pos !== FALSE ){
66
+ $columns[ $key ] = $pos;
67
+ $$key = $row[ $columns[ $key ] ];
68
+ }
69
+ }
70
+
71
+ if( !empty( $membership_startdate ) )
72
+ $membership_startdate = date( "Y-m-d", strtotime( $membership_startdate, current_time( 'timestamp' ) ) );
73
+
74
+ if( !empty( $membership_enddate ) )
75
+ $membership_enddate = date( "Y-m-d", strtotime( $membership_enddate, current_time( 'timestamp' ) ) );
76
+ else
77
+ $membership_enddate = "NULL";
78
+
79
+ if( !empty( $membership_timestamp ) )
80
+ $membership_timestamp = date( "Y-m-d", strtotime( $membership_timestamp, current_time( 'timestamp' ) ) );
81
+
82
+ if( !empty( $membership_discount_code ) && empty( $membership_code_id ) )
83
+ $membership_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE `code` = '" . esc_sql( $membership_discount_code ) . "' LIMIT 1" );
84
+
85
+ //change membership level
86
+ if( !empty( $membership_id ) )
87
+ {
88
+ $custom_level = array(
89
+ 'user_id' => $user_id,
90
+ 'membership_id' => $membership_id,
91
+ 'code_id' => $membership_code_id,
92
+ 'initial_payment' => $membership_initial_payment,
93
+ 'billing_amount' => $membership_billing_amount,
94
+ 'cycle_number' => $membership_cycle_number,
95
+ 'cycle_period' => $membership_cycle_period,
96
+ 'billing_limit' => $membership_billing_limit,
97
+ 'trial_amount' => $membership_trial_amount,
98
+ 'trial_limit' => $membership_trial_limit,
99
+ 'status' => $membership_status,
100
+ 'startdate' => $membership_startdate,
101
+ 'enddate' => $membership_enddate
102
+ );
103
+
104
+ pmpro_changeMembershipLevel( $custom_level, $user_id );
105
+
106
+ //if membership was in the past make it inactive
107
+ if( $membership_status === "inactive" || ( !empty( $membership_enddate ) && $membership_enddate !== "NULL" && strtotime( $membership_enddate, current_time('timestamp') ) < current_time('timestamp') ) ){
108
+ $sqlQuery = "UPDATE $wpdb->pmpro_memberships_users SET status = 'inactive' WHERE user_id = '" . $user_id . "' AND membership_id = '" . $membership_id . "'";
109
+ $wpdb->query( $sqlQuery );
110
+ $membership_in_the_past = true;
111
+ }
112
+
113
+ if( $membership_status === "active" && ( empty( $membership_enddate ) || $membership_enddate === "NULL" || strtotime( $membership_enddate, current_time('timestamp') ) >= current_time('timestamp') ) ){
114
+ $sqlQuery = $wpdb->prepare( "UPDATE {$wpdb->pmpro_memberships_users} SET status = 'active' WHERE user_id = %d AND membership_id = %d", $user_id, $membership_id );
115
+ $wpdb->query( $sqlQuery );
116
+ }
117
+ }
118
+
119
+ if( !empty( $membership_subscription_transaction_id ) && !empty( $membership_gateway ) || !empty( $membership_timestamp ) || !empty( $membership_code_id ) ){
120
+ $order = new MemberOrder();
121
+ $order->user_id = $user_id;
122
+ $order->membership_id = $membership_id;
123
+ $order->InitialPayment = $membership_initial_payment;
124
+ $order->payment_transaction_id = $membership_payment_transaction_id;
125
+ $order->subscription_transaction_id = $membership_subscription_transaction_id;
126
+ $order->affiliate_id = $membership_affiliate_id;
127
+ $order->gateway = $membership_gateway;
128
+
129
+ if( !empty( $membership_in_the_past ) )
130
+ $order->status = "cancelled";
131
+
132
+ $order->saveOrder();
133
+
134
+ if( !empty( $membership_timestamp ) ){
135
+ $timestamp = strtotime( $membership_timestamp, current_time('timestamp') );
136
+ $order->updateTimeStamp( date( "Y", $timestamp ), date( "m", $timestamp ), date( "d", $timestamp ), date( "H:i:s", $timestamp ) );
137
+ }
138
+ }
139
+
140
+ if( !empty( $membership_code_id ) && !empty( $order ) && !empty( $order->id ) )
141
+ $wpdb->query( "INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . esc_sql( $membership_code_id ) . "', '" . esc_sql( $user_id ) . "', '" . intval( $order->id ) . "', now())" );
142
+ }
trunk/addons/users-group.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'user-groups/user-groups.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_ug_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_ug_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_ug_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_ug_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'user_group' ) );
13
+ }
14
+
15
+ function acui_ug_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "WP Users Group is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td>
20
+ <?php _e( "You can import user groups and assign them to the users using the next format", 'import-users-from-csv-with-meta' ); ?>.
21
+ <ul style="list-style:disc outside none; margin-left:2em;">
22
+ <li><?php _e( "user_group as the column title", 'import-users-from-csv-with-meta' ); ?></li>
23
+ <li><?php _e( "The value of each cell will be the name of the user group (do not use slugs)", 'import-users-from-csv-with-meta' ); ?></li>
24
+ <li><?php _e( "If you want to import multiple values, you can use a list using commas to separate items", 'import-users-from-csv-with-meta' ); ?></li>
25
+ </ul>
26
+ </td>
27
+ </tr>
28
+ <?php
29
+ }
30
+
31
+ function acui_ug_post_import_single_user( $headers, $row, $user_id ){
32
+ $pos = array_search( 'user_group', $headers );
33
+
34
+ if( $pos === FALSE )
35
+ return;
36
+
37
+ $user_groups = explode( ',', $row[ $pos ] );
38
+ $user_groups = array_filter( $user_groups, function( $value ){ return $value !== ''; } );
39
+
40
+ $taxonomy = 'user-group';
41
+ $terms = array();
42
+
43
+ foreach ( $user_groups as $user_group ) {
44
+ $term = get_term_by( 'name', $user_group , $taxonomy );
45
+
46
+ if( $term == false ){
47
+ $term = wp_insert_term( $user_group, $taxonomy);
48
+ $terms[] = $term['term_id'];
49
+ }else{
50
+ $terms[] = $term->term_id;
51
+ }
52
+ }
53
+
54
+ wp_set_object_terms( $user_id, $terms, $taxonomy, false );
55
+ clean_object_term_cache( $user_id, $taxonomy );
56
+ }
trunk/addons/woocommerce-membership.php ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'woocommerce-memberships/woocommerce-memberships.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_wm_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_wm_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_wm_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_wm_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'member_first_name', 'member_last_name', 'member_email', 'membership_plan_id', 'membership_plan_slug', 'membership_plan', 'membership_status', 'member_since', 'membership_expiration' ) );
13
+ }
14
+
15
+ function acui_wm_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "WooCommerce Membership is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td><?php _e( "You can use the <strong>columns in the CSV format created by WooCommercer Membership</strong> in order to import data from this plugin.", 'import-users-from-csv-with-meta' ); ?>. <a href="https://docs.woocommerce.com/document/woocommerce-memberships-import-and-export/"><?php _e( "Read more about columns and formats", 'import-users-from-csv-with-meta' ); ?></a>
20
+ </td>
21
+ </tr>
22
+ <?php
23
+ }
24
+
25
+ function acui_wm_post_import_single_user( $headers, $row, $user_id ){
26
+ $keys = array( 'member_first_name', 'member_last_name', 'member_email', 'membership_plan_id', 'membership_plan_slug', 'membership_plan', 'membership_status', 'member_since', 'membership_expiration' );
27
+ $columns = array();
28
+
29
+ foreach ( $keys as $key ) {
30
+ $columns[ $key ] = array_search ( $key, $headers );
31
+ }
32
+
33
+ $membership_plan_id = isset( $columns['membership_plan_id'] ) && ! empty( $row[ $columns['membership_plan_id'] ] ) ? (int) $row[ $columns['membership_plan_id'] ] : null;
34
+ $membership_plan_slug = isset( $columns['membership_plan_slug'] ) && ! empty( $row[ $columns['membership_plan_slug'] ] ) ? $row[ $columns['membership_plan_slug'] ] : null;
35
+ $membership_plan = null;
36
+
37
+ if ( is_int( $membership_plan_id ) ) {
38
+ $membership_plan = wc_memberships_get_membership_plan( $membership_plan_id );
39
+ }
40
+
41
+ if ( ! $membership_plan && ! empty( $membership_plan_slug ) ) {
42
+ $membership_plan = wc_memberships_get_membership_plan( $membership_plan_slug );
43
+ }
44
+
45
+ // try to get an existing user membership from an id
46
+ $user_membership_id = isset( $columns['user_membership_id'] ) && ! empty( $row[ $columns['user_membership_id'] ] ) ? (int) $row[ $columns['user_membership_id'] ] : null;
47
+ $existing_user_membership = is_int( $user_membership_id ) ? wc_memberships_get_user_membership( $user_membership_id ) : null;
48
+
49
+ if ( ! $membership_plan && ! $existing_user_membership ) {
50
+ return;
51
+ } elseif ( ! $existing_user_membership && false ) {
52
+ return;
53
+ }
54
+
55
+ $import_data = array();
56
+
57
+ $import_data['membership_plan_id'] = $membership_plan_id;
58
+ $import_data['membership_plan_slug'] = $membership_plan_slug;
59
+ $import_data['membership_plan_name'] = isset( $columns['membership_plan'] ) && ! empty( $row[ $columns['membership_plan'] ] ) ? $row[ $columns['membership_plan'] ] : null;
60
+ $import_data['membership_plan'] = $membership_plan;
61
+ $import_data['user_membership_id'] = $user_membership_id;
62
+ $import_data['user_membership'] = $existing_user_membership;
63
+ $import_data['user_id'] = $user_id;
64
+ $import_data['user_name'] = isset( $columns['user_name'] ) && ! empty( $row[ $columns['user_name'] ] ) ? $row[ $columns['user_name'] ] : null;
65
+ $import_data['product_id'] = isset( $columns['product_id'] ) && ! empty( $row[ $columns['product_id'] ] ) ? $row[ $columns['product_id'] ] : null;
66
+ $import_data['order_id'] = isset( $columns['order_id'] ) && ! empty( $row[ $columns['order_id'] ] ) ? $row[ $columns['order_id'] ] : null;
67
+ $import_data['member_email'] = isset( $columns['member_email'] ) && ! empty( $row[ $columns['member_email'] ] ) ? $row[ $columns['member_email'] ] : null;
68
+ $import_data['member_first_name'] = isset( $columns['member_first_name'] ) && ! empty( $row[ $columns['member_first_name'] ] ) ? $row[ $columns['member_first_name'] ] : null;
69
+ $import_data['member_last_name'] = isset( $columns['member_last_name'] ) && ! empty( $row[ $columns['member_last_name'] ] ) ? $row[ $columns['member_last_name'] ] : null;
70
+ $import_data['membership_status'] = isset( $columns['membership_status'] ) && ! empty( $row[ $columns['membership_status'] ] ) ? $row[ $columns['membership_status'] ] : null;
71
+ $import_data['member_since'] = isset( $columns['member_since'] ) && ! empty( $row[ $columns['member_since'] ] ) ? $row[ $columns['member_since'] ] : null;
72
+ $import_data['membership_expiration'] = isset( $columns['membership_expiration'] ) && isset( $row[ $columns['membership_expiration'] ] ) ? $row[ $columns['membership_expiration'] ] : null;
73
+
74
+ $action = 'create';
75
+ $import_data = (array) apply_filters( 'wc_memberships_csv_import_user_memberships_data', $import_data, $action, $columns, $row );
76
+
77
+ $user_membership = null;
78
+
79
+ if ( isset( $import_data['membership_plan'] ) && $import_data['membership_plan'] instanceof WC_Memberships_Membership_Plan ) {
80
+ if ( wc_memberships_is_user_member( $user_id, $import_data['membership_plan'] ) ) {
81
+ return false;
82
+ }
83
+
84
+ $user_membership = wc_memberships_create_user_membership( array(
85
+ 'user_membership_id' => 0,
86
+ 'plan_id' => $import_data['membership_plan']->get_id(),
87
+ 'user_id' => $user_id,
88
+ 'product_id' => ! empty( $import_data['product_id'] ) ? (int) $import_data['product_id'] : 0,
89
+ 'order_id' => ! empty( $import_data['order_id'] ) ? (int) $import_data['order_id'] : 0,
90
+ ), 'create' );
91
+ }
92
+
93
+ acui_vm_update_user_membership_meta( $user_membership, $action, $import_data );
94
+
95
+ do_action( 'wc_memberships_csv_import_user_membership', $user_membership, $action, $import_data );
96
+ }
97
+
98
+ function acui_vm_update_user_membership_meta( WC_Memberships_User_Membership $user_membership, $action, array $data ) {
99
+ if( !empty( $data['product_id'] ) ) {
100
+ $user_membership->set_product_id( trim( $data['product_id'] ) );
101
+ }
102
+
103
+ if( !empty( $data['order_id'] ) ) {
104
+ $user_membership->set_order_id( trim( $data['order_id'] ) );
105
+ }
106
+
107
+ if( !empty( $data['member_since'] ) ) {
108
+ $user_membership->set_start_date( trim( $data['member_since'] ) );
109
+ }
110
+
111
+ if( !empty( $data['membership_status'] ) ){
112
+ $user_membership->update_status( trim( $data['membership_status'] ) );
113
+ }
114
+
115
+ if( !empty( $data['membership_expiration'] ) ){
116
+ $user_membership->set_end_date( trim( $data['membership_expiration'] ) );
117
+ }
118
+ }
trunk/addons/wp-lms-course.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /* this addon was originally developed by @egraznov https://wordpress.org/support/topic/lifterlms-addon/ */
4
+
5
+ if ( ! defined( 'ABSPATH' ) ) exit;
6
+
7
+ if( is_plugin_active( 'lifterlms/lifterlms.php' ) ){
8
+ add_filter( 'acui_restricted_fields', 'acui_wlms_restricted_fields', 10, 1 );
9
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_wlms_documentation_after_plugins_activated' );
10
+ add_action( 'post_acui_import_single_user', 'acui_wlms_post_import_single_user', 10, 3 );
11
+ }
12
+
13
+ function acui_wlms_restricted_fields( $acui_restricted_fields ){
14
+ return array_merge( $acui_restricted_fields, array( 'lms_courses' ) );
15
+ }
16
+
17
+ function acui_wlms_documentation_after_plugins_activated(){
18
+ ?>
19
+ <tr valign="top">
20
+ <th scope="row"><?php _e( "LifterLMS is activated", 'import-users-from-csv-with-meta' ); ?></th>
21
+ <td>
22
+ <?php _e( "You can import users and assign them to LMS Course using next format", 'import-users-from-csv-with-meta' ); ?>.
23
+ <ul style="list-style:disc outside none; margin-left:2em;">
24
+ <li><?php _e( "lms_courses as the column title", 'import-users-from-csv-with-meta' ); ?></li>
25
+ <li><?php _e( "The value of each cell will be the NUMBER of the course to enroll (do not use slugs)", 'import-users-from-csv-with-meta' ); ?></li>
26
+ <li><?php _e( "If you want to import multiple values, you can use a list using / to separate items", 'import-users-from-csv-with-meta' ); ?></li>
27
+ </ul>
28
+ </td>
29
+ </tr>
30
+ <?php
31
+ }
32
+
33
+ function acui_wlms_post_import_single_user( $headers, $row, $user_id ){
34
+ $pos = array_search( 'lms_courses', $headers );
35
+
36
+ if( $pos === FALSE )
37
+ return;
38
+
39
+ $lms_courses = explode( '/', $row[ $pos ] );
40
+ $lms_courses = array_filter( $lms_courses, function( $value ){ return $value !== ''; } );
41
+
42
+ foreach ($lms_courses as $course) {
43
+ if ( is_int( (int)$course ) ) {
44
+ $trigger = 'admin_import_' . $user_id;
45
+ $enrolled = llms_enroll_student( $user_id, (int)$course, $trigger );
46
+ }
47
+ }
48
+ }
trunk/addons/wp-members.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'wp-members/wp-members.php' ) ){
6
+ add_action( 'acui_tab_import_before_import_button', 'acui_wp_members_tab_import_before_import_button' );
7
+ add_action( 'acui_tab_frontend_before_save_button', 'acui_wp_members_tab_frontend_before_save_button' );
8
+ }
9
+
10
+ function acui_wp_members_tab_import_before_import_button(){
11
+ ?>
12
+ <h2><?php _e( 'WP Members compatibility', 'import-users-from-csv-with-meta'); ?></h2>
13
+
14
+ <table class="form-table">
15
+ <tbody>
16
+ <tr class="form-field form-required">
17
+ <th scope="row"><label>Activate user when they are being imported?</label></th>
18
+ <td>
19
+ <select name="activate_users_wp_members">
20
+ <option value="no_activate"><?php _e( 'Do not activate users', 'import-users-from-csv-with-meta' ); ?></option>
21
+ <option value="activate"><?php _e( 'Activate users when they are being imported', 'import-users-from-csv-with-meta' ); ?></option>
22
+ </select>
23
+
24
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/wp-members/"><?php _e( 'WP Members', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?>)</strong>.</p>
25
+ </td>
26
+
27
+ </tr>
28
+ </tbody>
29
+ </table>
30
+ <?php
31
+ }
32
+
33
+ function acui_wp_members_tab_frontend_before_save_button(){
34
+ ?>
35
+ <h2><?php _e( 'WP Members compatibility', 'import-users-from-csv-with-meta'); ?></h2>
36
+ <table class="form-table">
37
+ <tbody>
38
+
39
+ <tr class="form-field form-required">
40
+ <th scope="row"><label>Activate user when they are being imported?</label></th>
41
+ <td>
42
+ <select name="activate-users-wp-members-frontend">
43
+ <option value="no_activate" <?php selected( $activate_users_wp_members,'no_activate', true ); ?>><?php _e( 'Do not activate users', 'import-users-from-csv-with-meta' ); ?></option>
44
+ <option value="activate" <?php selected( $activate_users_wp_members,'activate', true ); ?>><?php _e( 'Activate users when they are being imported', 'import-users-from-csv-with-meta' ); ?></option>
45
+ </select>
46
+
47
+ <p class="description"><strong>(<?php _e( 'Only for', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/plugins/wp-members/"><?php _e( 'WP Members', 'import-users-from-csv-with-meta' ); ?></a> <?php _e( 'users', 'import-users-from-csv-with-meta' ); ?>)</strong>.</p>
48
+ </td>
49
+ </tr>
50
+ </tbody>
51
+ </table>
52
+ <?php
53
+ }
trunk/addons/wp-user-avatar.php ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'wp-user-avatar/wp-user-avatar.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_wpua_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_wpua_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_wpua_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_wpua_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'avatar_url' ) );
13
+ }
14
+
15
+ function acui_wpua_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "WP Users Avatar is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td>
20
+ <?php _e( "You can import user avatar and assign them to the users using the next format", 'import-users-from-csv-with-meta' ); ?>.
21
+ <ul style="list-style:disc outside none; margin-left:2em;">
22
+ <li><?php _e( "avatar_url as the column title", 'import-users-from-csv-with-meta' ); ?></li>
23
+ <li><?php _e( "The value of each cell will be the url to the image in your system", 'import-users-from-csv-with-meta' ); ?></li>
24
+ </ul>
25
+ </td>
26
+ </tr>
27
+ <?php
28
+ }
29
+
30
+ function acui_wpua_post_import_single_user( $headers, $row, $user_id ){
31
+ $pos = array_search( 'avatar_url', $headers );
32
+
33
+ if( $pos === FALSE )
34
+ return;
35
+
36
+ global $blog_id, $wpdb;
37
+ $avatar_url = $row[ $pos ];
38
+
39
+ $avatar_id = media_sideload_image( $avatar_url, 0, 'Avatar of user ' . $user_id, 'id' );
40
+ update_user_meta( $user_id, $wpdb->get_blog_prefix($blog_id).'user_avatar', "");
41
+ }
trunk/addons/wp-users-group.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if( is_plugin_active( 'wp-user-groups/wp-user-groups.php' ) ){
6
+ add_filter( 'acui_restricted_fields', 'acui_wpug_restricted_fields', 10, 1 );
7
+ add_action( 'acui_documentation_after_plugins_activated', 'acui_wpug_documentation_after_plugins_activated' );
8
+ add_action( 'post_acui_import_single_user', 'acui_wpug_post_import_single_user', 10, 3 );
9
+ }
10
+
11
+ function acui_wpug_restricted_fields( $acui_restricted_fields ){
12
+ return array_merge( $acui_restricted_fields, array( 'user_group' ) );
13
+ }
14
+
15
+ function acui_wpug_documentation_after_plugins_activated(){
16
+ ?>
17
+ <tr valign="top">
18
+ <th scope="row"><?php _e( "WP Users Group is activated", 'import-users-from-csv-with-meta' ); ?></th>
19
+ <td>
20
+ <?php _e( "You can import user groups and assign them to the users using the next format", 'import-users-from-csv-with-meta' ); ?>.
21
+ <ul style="list-style:disc outside none; margin-left:2em;">
22
+ <li><?php _e( "user_group as the column title", 'import-users-from-csv-with-meta' ); ?></li>
23
+ <li><?php _e( "The value of each cell will be the name of the user group (do not use slugs)", 'import-users-from-csv-with-meta' ); ?></li>
24
+ <li><?php _e( "If you want to import multiple values, you can use a list using commas to separate items", 'import-users-from-csv-with-meta' ); ?></li>
25
+ </ul>
26
+ </td>
27
+ </tr>
28
+ <?php
29
+ }
30
+
31
+ function acui_wpug_post_import_single_user( $headers, $row, $user_id ){
32
+ $pos = array_search( 'user_group', $headers );
33
+
34
+ if( $pos === FALSE )
35
+ return;
36
+
37
+ $user_groups = explode( ',', $row[ $pos ] );
38
+ $user_groups = array_filter( $user_groups, function( $value ){ return $value !== ''; } );
39
+
40
+ $taxonomy = 'user-group';
41
+ $terms = array();
42
+
43
+ foreach ( $user_groups as $user_group ) {
44
+ $term = get_term_by( 'name', $user_group , $taxonomy );
45
+
46
+ if( $term == false ){
47
+ $term = wp_insert_term( $user_group, $taxonomy);
48
+ $terms[] = $term['term_id'];
49
+ }else{
50
+ $terms[] = $term->term_id;
51
+ }
52
+ }
53
+
54
+ wp_set_object_terms( $user_id, $terms, $taxonomy, false );
55
+ clean_object_term_cache( $user_id, $taxonomy );
56
+ }
trunk/assets/codection-inmotion.png ADDED
Binary file
trunk/assets/email-template-attachment-admin.js ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function($){
2
+ 'use strict';
3
+ var attachmentFrame;
4
+
5
+ $( '#acui_email_option_upload_button,#acui_email_template_upload_button' ).click(function(e) {
6
+ var btn = e.target;
7
+
8
+ if ( !btn ) return;
9
+
10
+ e.preventDefault();
11
+
12
+ attachmentFrame = wp.media.frames.attachmentFrame = wp.media({
13
+ title: email_template_attachment_admin.title,
14
+ button: { text: email_template_attachment_admin.button },
15
+ });
16
+
17
+ attachmentFrame.on('select', function() {
18
+ var media_attachment = attachmentFrame.state().get('selection').first().toJSON();
19
+
20
+ $( '#email_template_attachment_file' ).val( media_attachment.url );
21
+ $( '#email_template_attachment_id' ).val( media_attachment.id );
22
+ });
23
+
24
+ attachmentFrame.open();
25
+ });
26
+
27
+ $( '#enable_email_templates' ).change( function(){
28
+ var enable = $( this ).is( ':checked' );
29
+ var data = {
30
+ 'action': 'acui_refresh_enable_email_templates',
31
+ 'enable': enable,
32
+ 'security': email_template_attachment_admin.security,
33
+ };
34
+
35
+ $.post( ajaxurl, data, function( response ) {
36
+ location.reload();
37
+ });
38
+ } );
39
+
40
+ $( '#load_email_template' ).click( function(){
41
+ if( $( '#email_template_selected' ).val() == '' )
42
+ return;
43
+
44
+ var data = {
45
+ 'action': 'acui_email_template_selected',
46
+ 'email_template_selected': $( '#email_template_selected' ).val(),
47
+ 'security': email_template_attachment_admin.security,
48
+ };
49
+
50
+ $.post( ajaxurl, data, function( response ) {
51
+ var response = JSON.parse( response );
52
+ $( '#title' ).val( response.title );
53
+ tinyMCE.get( 'body_mail' ).setContent( response.content );
54
+ $( '#email_template_attachment_id' ).val( response.attachment_id );
55
+ if( response.attachment_url != '' ){
56
+ $( '#email_template_attachment_file' ).val( response.attachment_url );
57
+ }
58
+ $( '#template_id' ).val( response.id );
59
+ $( '#save_mail_template_options' ).click();
60
+ });
61
+ } );
62
+
63
+ $( '#acui_email_option_remove_upload_button' ).click( function(){
64
+ var data = {
65
+ 'action': 'acui_mail_options_remove_attachment',
66
+ 'security': email_template_attachment_admin.nonce,
67
+ };
68
+
69
+ $.post( ajaxurl, data, function( response ) {
70
+ location.reload();
71
+ });
72
+ } );
73
+
74
+ $( '#acui_email_template_remove_upload_button' ).click( function(){
75
+ $( '#email_template_attachment_file' ).val( '' );
76
+ $( '#email_template_attachment_id' ).val( '' );
77
+ } );
78
+ });
trunk/assets/icon_coffee.png ADDED
Binary file
trunk/assets/iontics_logo.svg ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="114px" height="49.3px" viewBox="0 0 114 49.3" style="enable-background:new 0 0 114 49.3;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#333333;}
7
+ .st1{fill:#C1D548;}
8
+ </style>
9
+ <g>
10
+ <path class="st0" d="M8,7.3h0.3c1.6,0,3,1.3,3,3l0,0c0,1.6-1.3,3-3,3H8c-1.6-0.1-3-1.4-3-3.1l0,0C5,8.6,6.3,7.3,8,7.3z M5,16.1
11
+ l1.9,0.7c0.8,0.3,1.7,0.3,2.5,0l1.9-0.7v25.4H5V16.1z"/>
12
+ <path class="st0" d="M14.4,23c0-3.1,1.1-7.4,8.6-7.4c1.9,0,4.2,0.4,5.7,1.4c2.3,1.5,2.6,3.6,2.6,5.7v12.2c0,4.6-3.1,7.1-8.7,7.1
13
+ c-8.3,0-8.3-5.8-8.3-7.7L14.4,23L14.4,23z M20.7,35.3c0,0.6,0,2.6,2.2,2.6c2.2,0,2.2-1.7,2.2-2.7V22.4c0-1.5-0.2-3.1-2.1-3.1
14
+ c-2.3,0-2.3,1.9-2.3,3.1V35.3z"/>
15
+ <path class="st0" d="M34.4,16.1h6.4L40.8,18c1.2-1.2,2.6-2.4,5.5-2.4c1.9,0,3.5,0.7,4.3,1.7c1.2,1.3,1.2,2.8,1.2,4.3v19.8h-6.2
16
+ V22.8c0-1.4-0.1-3.1-2.2-3.1c-2.6,0-2.6,2.2-2.6,3.4v18.3h-6.3C34.4,41.4,34.4,16.1,34.4,16.1z"/>
17
+ <path class="st1" d="M55.2,20L55.1,7h6.3v9.1h3.8V20h-3.8v14.5c0,1.6,0.3,2.8,2.9,2.8c0.4,0,0.7-0.1,1.1-0.1v4.2
18
+ c-0.4,0.1-1.2,0.3-3.3,0.3c-6,0-6.9-2.1-6.9-5.3L55.2,20"/>
19
+ <path class="st1" d="M70.5,6.9h0.3c1.6,0,3,1.3,3,3l0,0c0,1.6-1.3,3-3,3h-0.3c-1.6,0-3-1.3-3-3l0,0C67.5,8.3,68.8,6.9,70.5,6.9z"/>
20
+ <path class="st1" d="M87.4,25.7v-3.1c0-0.9,0-2.8-2.3-2.8c-2.6,0-2.6,2.2-2.6,3.5v11c0,1.2,0,3.3,2.5,3.3c2.4,0,2.5-2.2,2.5-3.3
21
+ v-2.9h6.3v2.9c0,5.2-2.9,7.7-8.7,7.7c-1.4,0-4.3-0.2-6.4-1.7c-2.1-1.5-2.4-3.6-2.4-5.6V23.4c0-1.7,0.4-3.6,1.5-4.9
22
+ c1.7-2,4.5-2.8,7.3-2.8c2.3,0,4.8,0.6,6.4,1.8c1.6,1.3,2.2,2.9,2.2,5.3v2.9H87.4z"/>
23
+ <path class="st1" d="M67.5,16.1l1.9,0.7c0.8,0.3,1.7,0.3,2.5,0l1.9-0.7v25.4h-6.3V16.1z"/>
24
+ <path class="st1" d="M95.3,32.6h5.8c0,3.6,0,5.2,2.5,5.2c1.4,0,2.5-0.6,2.5-2.8c0-1.5-0.1-2.2-1.9-3.3l-5.3-3.5
25
+ c-0.4-0.2-1.3-1.1-1.8-1.5c-0.7-0.8-1.5-1.8-1.5-4.5c0-5.3,3.7-6.5,8.2-6.5c5.5,0,7.7,2.2,7.7,5.9v2.8h-5.5c0-2.9,0-4.6-2.3-4.6
26
+ c-0.9,0-2.2,0.2-2.2,2.2c0,0.7,0.1,1.6,1.8,2.8l5.8,3.8c0.4,0.2,1.5,1.3,1.8,1.7c0.8,1,0.9,2.3,0.9,3.9c0,3.3,0,7.8-8.4,7.8
27
+ c-6.8,0-8.2-3.3-8.2-6.7V32.6z"/>
28
+ </g>
29
+ </svg>
trunk/assets/style.css ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .acui .main_bar{
2
+ float: left;
3
+ width: 80%;
4
+ }
5
+
6
+ .acui .sidebar {
7
+ float: right;
8
+ font-size: 12px;
9
+ margin: 0 1%;
10
+ width: 18%;
11
+ }
12
+
13
+ .acui .sidebar_section{
14
+ background-color: #F6F6F6;
15
+ border: 1px solid #8A2BE2;
16
+ float: left;
17
+ margin: 0 0 10px;
18
+ padding: 10px;
19
+ width: 100%;
20
+ }
21
+
22
+ .acui .sidebar_section.become_patreon{
23
+ background-color: transparent;
24
+ border: 0;
25
+ }
26
+
27
+ .acui .sidebar ul {
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+
32
+ .acui .sidebar li {
33
+ font-size: 11px;
34
+ line-height: 16px;
35
+ list-style: disc outside none;
36
+ margin: 5px 0 5px 20px;
37
+ }
38
+
39
+ .acui .sidebar h3 {
40
+ margin: 0 0 10px;
41
+ }
42
+
43
+ .acui .sidebar img {
44
+ display: block;
45
+ margin: 0 auto;
46
+ }
47
+
48
+ .acui .sidebar_section label {
49
+ font-size: 11px;
50
+ }
51
+
52
+ .acui .sidebar_section.webempresa img {
53
+ width: 100%;
54
+ }
55
+
56
+ .acui #vote_us{
57
+ cursor: pointer;
58
+ }
59
+
60
+ .acui .patreon{
61
+ backface-visibility: hidden;
62
+ background-color: rgb(249, 104, 84);
63
+ box-sizing: border-box;
64
+ display: inline-block;
65
+ font-weight: 700;
66
+ position: relative;
67
+ text-align: center;
68
+ text-transform: uppercase;
69
+ user-select: none;
70
+ white-space: inherit;
71
+ cursor: pointer;
72
+ width: 100%;
73
+ color: rgb(255, 255, 255) !important;
74
+ font-size: 1rem !important;
75
+ border-width: 2px;
76
+ border-style: solid;
77
+ border-color: rgb(249, 104, 84);
78
+ border-image: initial;
79
+ border-radius: 0px;
80
+ padding: 1rem 1.5rem;
81
+ text-decoration: none;
82
+ transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
83
+ }
trunk/assets/webempresa_logo.png ADDED
Binary file
trunk/classes/columns.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Columns{
6
+ public static function admin_gui(){
7
+ $show_profile_fields = get_option( "acui_show_profile_fields");
8
+ $headers = get_option("acui_columns");
9
+ ?>
10
+ <h3><?php _e( 'Extra profile fields', 'import-users-from-csv-with-meta' ); ?></h3>
11
+ <table class="form-table">
12
+ <tbody>
13
+ <tr valign="top">
14
+ <th scope="row"><?php _e( 'Show fields in profile?', 'import-users-from-csv-with-meta' ); ?></th>
15
+ <td>
16
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
17
+ <input type="checkbox" name="show-profile-fields" value="yes" <?php if( $show_profile_fields == true ) echo "checked='checked'"; ?>>
18
+ <input type="hidden" name="show-profile-fields-action" value="update"/>
19
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
20
+ <input class="button-primary" type="submit" value="<?php _e( 'Save option', 'import-users-from-csv-with-meta'); ?>"/>
21
+ </form>
22
+ </td>
23
+ </tr>
24
+ <tr valign="top">
25
+ <th scope="row"><?php _e( 'Extra profile fields loadad in previous files', 'import-users-from-csv-with-meta' ); ?></th>
26
+ <td><small><em><?php _e( '(if you load another CSV with different columns, the new ones will replace this list)', 'import-users-from-csv-with-meta' ); ?></em></small>
27
+ <ol>
28
+ <?php
29
+ if( is_array( $headers ) && count( $headers ) > 0 ):
30
+ foreach ($headers as $column): ?>
31
+ <li><?php echo $column; ?></li>
32
+ <?php endforeach; ?>
33
+
34
+ <?php else: ?>
35
+ <li><?php _e( 'There is no columns loaded yet', 'import-users-from-csv-with-meta' ); ?></li>
36
+ <?php endif; ?>
37
+ </ol>
38
+ </td>
39
+ </tr>
40
+ </tbody>
41
+ </table>
42
+ <?php
43
+ }
44
+ }
trunk/classes/cron.php ADDED
@@ -0,0 +1,281 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Cron{
6
+ public static function admin_gui(){
7
+ $cron_activated = get_option( "acui_cron_activated");
8
+ $send_mail_cron = get_option( "acui_cron_send_mail");
9
+ $send_mail_updated = get_option( "acui_cron_send_mail_updated");
10
+ $cron_delete_users = get_option( "acui_cron_delete_users");
11
+ $cron_delete_users_assign_posts = get_option( "acui_cron_delete_users_assign_posts");
12
+ $cron_change_role_not_present = get_option( "acui_cron_change_role_not_present" );
13
+ $cron_change_role_not_present_role = get_option( "acui_cron_change_role_not_present_role" );
14
+ $path_to_file = get_option( "acui_cron_path_to_file");
15
+ $period = get_option( "acui_cron_period");
16
+ $role = get_option( "acui_cron_role");
17
+ $update_roles_existing_users = get_option( "acui_cron_update_roles_existing_users");
18
+ $move_file_cron = get_option( "acui_move_file_cron");
19
+ $path_to_move = get_option( "acui_cron_path_to_move");
20
+ $path_to_move_auto_rename = get_option( "acui_cron_path_to_move_auto_rename");
21
+ $log = get_option( "acui_cron_log");
22
+ $allow_multiple_accounts = get_option("acui_cron_allow_multiple_accounts");
23
+ $loaded_periods = wp_get_schedules();
24
+
25
+ if( empty( $cron_activated ) )
26
+ $cron_activated = false;
27
+
28
+ if( empty( $send_mail_cron ) )
29
+ $send_mail_cron = false;
30
+
31
+ if( empty( $send_mail_updated ) )
32
+ $send_mail_updated = false;
33
+
34
+ if( empty( $cron_delete_users ) )
35
+ $cron_delete_users = false;
36
+
37
+ if( empty( $update_roles_existing_users) )
38
+ $update_roles_existing_users = false;
39
+
40
+ if( empty( $cron_delete_users_assign_posts ) )
41
+ $cron_delete_users_assign_posts = '';
42
+
43
+ if( empty( $path_to_file ) )
44
+ $path_to_file = dirname( __FILE__ ) . '/test.csv';
45
+
46
+ if( empty( $period ) )
47
+ $period = 'hourly';
48
+
49
+ if( empty( $move_file_cron ) )
50
+ $move_file_cron = false;
51
+
52
+ if( empty( $path_to_move ) )
53
+ $path_to_move = dirname( __FILE__ ) . '/move.csv';
54
+
55
+ if( empty( $path_to_move_auto_rename ) )
56
+ $path_to_move_auto_rename = false;
57
+
58
+ if( empty( $log ) )
59
+ $log = "No tasks done yet.";
60
+
61
+ if( empty( $allow_multiple_accounts ) )
62
+ $allow_multiple_accounts = "not_allowed";
63
+ ?>
64
+ <h2><?php _e( "Execute an import of users periodically", 'import-users-from-csv-with-meta' ); ?></h2>
65
+
66
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
67
+ <table class="form-table">
68
+ <tbody>
69
+
70
+ <tr class="form-field form-required">
71
+ <th scope="row"><label for="cron-activated"><?php _e( 'Activate periodical import?', 'import-users-from-csv-with-meta' ); ?></label></th>
72
+ <td>
73
+ <input type="checkbox" name="cron-activated" value="yes" <?php if( $cron_activated == true ) echo "checked='checked'"; ?>/>
74
+ </td>
75
+ </tr>
76
+
77
+ <tr class="form-field">
78
+ <th scope="row"><label for="path_to_file"><?php _e( "Path of file that are going to be imported", 'import-users-from-csv-with-meta' ); ?></label></th>
79
+ <td>
80
+ <input placeholder="<?php _e('Insert complete path to the file', 'import-users-from-csv-with-meta' ) ?>" type="text" name="path_to_file" id="path_to_file" value="<?php echo $path_to_file; ?>" style="width:70%;" />
81
+ <p class="description"><?php _e( 'You have to introduce the path to file, i.e.:', 'import-users-from-csv-with-meta' ); ?> <?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/test.csv</p>
82
+ </td>
83
+ </tr>
84
+
85
+ <tr class="form-field form-required">
86
+ <th scope="row"><label for="period"><?php _e( 'Period', 'import-users-from-csv-with-meta' ); ?></label></th>
87
+ <td>
88
+ <select id="period" name="period">
89
+ <?php foreach( $loaded_periods as $key => $value ): ?>
90
+ <option <?php if( $period == $key ) echo "selected='selected'"; ?> value="<?php echo $key; ?>"><?php echo $value['display']; ?></option>
91
+ <?php endforeach; ?>
92
+ </select>
93
+ <p class="description"><?php _e( 'How often the event should reoccur?', 'import-users-from-csv-with-meta' ); ?></p>
94
+ </td>
95
+ </tr>
96
+
97
+ <tr class="form-field form-required">
98
+ <th scope="row"><label for="send-mail-cron"><?php _e( 'Send mail when using periodical import?', 'import-users-from-csv-with-meta' ); ?></label></th>
99
+ <td>
100
+ <input type="checkbox" name="send-mail-cron" value="yes" <?php if( $send_mail_cron == true ) echo "checked='checked'"; ?>/>
101
+ </td>
102
+ </tr>
103
+
104
+ <tr class="form-field form-required">
105
+ <th scope="row"><label for="send-mail-updated"><?php _e( 'Send mail also to users that are being updated?', 'import-users-from-csv-with-meta' ); ?></label></th>
106
+ <td>
107
+ <input type="checkbox" name="send-mail-updated" value="yes" <?php if( $send_mail_updated == true ) echo "checked='checked'"; ?>/>
108
+ </td>
109
+ </tr>
110
+
111
+ <tr class="form-field form-required">
112
+ <th scope="row"><label for="role"><?php _e( 'Role', 'import-users-from-csv-with-meta' ); ?></label></th>
113
+ <td>
114
+ <select id="role" name="role">
115
+ <?php
116
+ if( $role == '' )
117
+ echo "<option selected='selected' value=''>" . __( 'Disable role assignment in cron import', 'import-users-from-csv-with-meta' ) . "</option>";
118
+ else
119
+ echo "<option value=''>" . __( 'Disable role assignment in cron import', 'import-users-from-csv-with-meta' ) . "</option>";
120
+
121
+ $list_roles = acui_get_editable_roles();
122
+ foreach ($list_roles as $key => $value) {
123
+ if($key == $role)
124
+ echo "<option selected='selected' value='$key'>$value</option>";
125
+ else
126
+ echo "<option value='$key'>$value</option>";
127
+ }
128
+ ?>
129
+ </select>
130
+ <p class="description"><?php _e( 'Which role would be used to import users?', 'import-users-from-csv-with-meta' ); ?></p>
131
+ </td>
132
+ </tr>
133
+
134
+ <tr class="form-field form-required">
135
+ <th scope="row"><label for="update-roles-existing-users"><?php _e( 'Update roles for existing users?', 'import-users-from-csv-with-meta' ); ?></label></th>
136
+ <td>
137
+ <input type="checkbox" name="update-roles-existing-users" value="yes" <?php if( $update_roles_existing_users ) echo "checked='checked'"; ?>/>
138
+ </td>
139
+ </tr>
140
+
141
+ <tr class="form-field form-required">
142
+ <th scope="row"><label for="move-file-cron"><?php _e( 'Move file after import?', 'import-users-from-csv-with-meta' ); ?></label></th>
143
+ <td>
144
+ <div style="float:left;">
145
+ <input type="checkbox" name="move-file-cron" value="yes" <?php if( $move_file_cron == true ) echo "checked='checked'"; ?>/>
146
+ </div>
147
+
148
+ <div class="move-file-cron-cell" style="margin-left:25px;">
149
+ <input placeholder="<?php _e( 'Insert complete path to the file', 'import-users-from-csv-with-meta'); ?>" type="text" name="path_to_move" id="path_to_move" value="<?php echo $path_to_move; ?>" style="width:70%;" />
150
+ <p class="description"><?php _e( 'You have to introduce the path to file, i.e.:', 'import-users-from-csv-with-meta'); ?> <?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/move.csv</p>
151
+ </div>
152
+ </td>
153
+ </tr>
154
+
155
+ <tr class="form-field form-required move-file-cron-cell">
156
+ <th scope="row"><label for="move-file-cron"><?php _e( 'Auto rename after move?', 'import-users-from-csv-with-meta' ); ?></label></th>
157
+ <td>
158
+ <div style="float:left;">
159
+ <input type="checkbox" name="path_to_move_auto_rename" value="yes" <?php if( $path_to_move_auto_rename == true ) echo "checked='checked'"; ?>/>
160
+ </div>
161
+
162
+ <div style="margin-left:25px;">
163
+ <p class="description"><?php _e( 'Your file will be renamed after moved, so you will not lost any version of it. The way to rename will be append the time stamp using this date format: YmdHis.', 'import-users-from-csv-with-meta'); ?></p>
164
+ </div>
165
+ </td>
166
+ </tr>
167
+
168
+ </tbody>
169
+ </table>
170
+
171
+ <h2><?php _e( 'Users not present in CSV file', 'import-users-from-csv-with-meta'); ?></h2>
172
+
173
+ <table class="form-table">
174
+ <tbody>
175
+
176
+ <tr class="form-field form-required">
177
+ <th scope="row"><label for="cron-delete-users"><?php _e( 'Delete users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
178
+ <td>
179
+ <div style="float:left; margin-top: 10px;">
180
+ <input type="checkbox" name="cron-delete-users" value="yes" <?php if( $cron_delete_users == true ) echo "checked='checked'"; ?>/>
181
+ </div>
182
+ <div style="margin-left:25px;">
183
+ <select id="cron-delete-users-assign-posts" name="cron-delete-users-assign-posts">
184
+ <?php
185
+ if( $cron_delete_users_assign_posts == '' )
186
+ echo "<option selected='selected' value=''>" . __( 'Delete posts of deleted users without assigning to any user', 'import-users-from-csv-with-meta' ) . "</option>";
187
+ else
188
+ echo "<option value=''>" . __( 'Delete posts of deleted users without assigning to any user', 'import-users-from-csv-with-meta' ) . "</option>";
189
+
190
+ $blogusers = get_users( array( 'fields' => array( 'ID', 'display_name' ) ) );
191
+
192
+ foreach ( $blogusers as $bloguser ) {
193
+ if( $bloguser->ID == $cron_delete_users_assign_posts )
194
+ echo "<option selected='selected' value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
195
+ else
196
+ echo "<option value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
197
+ }
198
+ ?>
199
+ </select>
200
+ <p class="description"><?php _e( 'After delete users, we can choose if we want to assign their posts to another user. Please do not delete them or posts will be deleted.', 'import-users-from-csv-with-meta' ); ?></p>
201
+ </div>
202
+ </td>
203
+ </tr>
204
+
205
+ <tr class="form-field form-required">
206
+ <th scope="row"><label for="cron-change-role-not-present"><?php _e( 'Change role of users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
207
+ <td>
208
+ <div style="float:left; margin-top: 10px;">
209
+ <input type="checkbox" name="cron-change-role-not-present" value="yes" <?php checked( $cron_change_role_not_present ); ?> />
210
+ </div>
211
+ <div style="margin-left:25px;">
212
+ <select id="cron-change-role-not-present-role" name="cron-change-role-not-present-role">
213
+ <?php
214
+ $list_roles = acui_get_editable_roles();
215
+ foreach ($list_roles as $key => $value):
216
+ ?>
217
+ <option value='<?php echo $key; ?>' <?php selected( $cron_change_role_not_present_role, $key ); ?> ><?php echo $value; ?></option>
218
+ <?php endforeach; ?>
219
+ </select>
220
+ <p class="description"><?php _e( 'After import users which is not present in the CSV and can be changed to a different role.', 'import-users-from-csv-with-meta' ); ?></p>
221
+ </div>
222
+ </td>
223
+ </tr>
224
+ </tbody>
225
+ </table>
226
+
227
+ <?php do_action( 'acui_tab_cron_before_log' ); ?>
228
+
229
+ <h2><?php _e( 'Log', 'import-users-from-csv-with-meta'); ?></h2>
230
+
231
+ <table class="form-table">
232
+ <tbody>
233
+ <tr class="form-field form-required">
234
+ <th scope="row"><label for="log"><?php _e( 'Last actions of schedule task', 'import-users-from-csv-with-meta' ); ?></label></th>
235
+ <td>
236
+ <pre><?php echo strip_tags( $log, '<br><div><p><strong><style><h2><h3><table><tbody><tr><td><th>' ); ?></pre>
237
+ </td>
238
+ </tr>
239
+
240
+ </tbody>
241
+ </table>
242
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
243
+ <input class="button-primary" type="submit" value="<?php _e( 'Save schedule options', 'import-users-from-csv-with-meta'); ?>"/>
244
+ </form>
245
+
246
+ <script>
247
+ jQuery( document ).ready( function( $ ){
248
+ $( "[name='cron-delete-users']" ).change(function() {
249
+ if( $(this).is( ":checked" ) ) {
250
+ var returnVal = confirm("<?php _e( 'Are you sure to delete all users that are not present in the CSV? This action cannot be undone.', 'import-users-from-csv-with-meta' ); ?>");
251
+ $(this).attr("checked", returnVal);
252
+
253
+ if( returnVal )
254
+ $( '#cron-delete-users-assign-posts' ).show();
255
+ }
256
+ else{
257
+ $( '#cron-delete-users-assign-posts' ).hide();
258
+ }
259
+ });
260
+
261
+ $( "[name='move-file-cron']" ).change(function() {
262
+ if( $(this).is( ":checked" ) ){
263
+ $( '.move-file-cron-cell' ).show();
264
+ }
265
+ else{
266
+ $( '.move-file-cron-cell' ).hide();
267
+ }
268
+ });
269
+
270
+ <?php if( $cron_delete_users == '' ): ?>
271
+ $( '#cron-delete-users-assign-posts' ).hide();
272
+ <?php endif; ?>
273
+
274
+ <?php if( !$move_file_cron ): ?>
275
+ $( '.move-file-cron-cell' ).hide();
276
+ <?php endif; ?>
277
+ });
278
+ </script>
279
+ <?php
280
+ }
281
+ }
trunk/classes/doc.php ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Doc{
6
+ public static function message(){
7
+ ?>
8
+ <h3><?php _e( 'Documentation', 'import-users-from-csv-with-meta' ); ?></h3>
9
+ <table class="form-table">
10
+ <tbody>
11
+ <tr valign="top">
12
+ <th scope="row"><?php _e( 'Columns position', 'import-users-from-csv-with-meta' ); ?></th>
13
+ <td><small><em><?php _e( '(Documents should look like the one presented into screenshot. Remember you should fill the first two columns with the next values)', 'import-users-from-csv-with-meta' ); ?></em></small>
14
+ <ol>
15
+ <li><?php _e( 'Username', 'import-users-from-csv-with-meta' ); ?></li>
16
+ <li><?php _e( 'Email', 'import-users-from-csv-with-meta' ); ?></li>
17
+ </ol>
18
+ <small><em><?php _e( '(The next columns are totally customizable and you can use whatever you want. All rows must contains same columns)', 'import-users-from-csv-with-meta' ); ?></em></small>
19
+ <small><em><?php _e( '(User profile will be adapted to the kind of data you have selected)', 'import-users-from-csv-with-meta' ); ?></em></small>
20
+ <small><em><?php _e( '(If you want to disable the extra profile information, please deactivate this plugin after make the import)', 'import-users-from-csv-with-meta' ); ?></em></small>
21
+ </td>
22
+ </tr>
23
+ <tr valign="top">
24
+ <th scope="row"><?php _e( 'id (column id)', 'import-users-from-csv-with-meta' ); ?></th>
25
+ <td><?php _e( 'You can use a column called id in order to make inserts or updates of an user using the ID used by WordPress in the wp_users table. We have two different cases:', 'import-users-from-csv-with-meta' ); ?>
26
+ <ul style="list-style:disc outside none; margin-left:2em;">
27
+ <li><?php _e( "If id <strong>doesn't exist in your users table</strong>: WordPress core does not allow us insert it, so it will throw an error of kind: invalid_user_id", 'import-users-from-csv-with-meta' ); ?></li>
28
+ <li><?php _e( "If id <strong>exists</strong>: plugin check if username is the same, if yes, it will update the data, if not, it ignores the cell to avoid problems", 'import-users-from-csv-with-meta' ); ?></li>
29
+ </ul>
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
+ <li><?php _e( "If you <strong>don't create a column for passwords</strong>: passwords will be generated automatically", 'import-users-from-csv-with-meta' ); ?></li>
37
+ <li><?php _e( "If you <strong>create a column for passwords</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>
38
+ </ul>
39
+ </td>
40
+ </tr>
41
+ <tr valign="top">
42
+ <th scope="row"><?php _e( "Roles (column role)", 'import-users-from-csv-with-meta' ); ?></th>
43
+ <td><?php _e( "Plugin can import roles from the CSV. This is how it works:", 'import-users-from-csv-with-meta' ); ?>
44
+ <ul style="list-style:disc outside none; margin-left:2em;">
45
+ <li><?php _e( "If you <strong>don't create a column for roles</strong>: roles would be chosen from the 'Default role' field in import screen.", 'import-users-from-csv-with-meta' ); ?></li>
46
+ <li><?php _e( "If you <strong>create a column called 'role'</strong>: if cell is empty, roles would be chosen from 'Default role' field in import screen; if cell has a value, it will be used as role, if this role doesn't exist the default one would be used", 'import-users-from-csv-with-meta' ); ?></li>
47
+ <li><?php _e( "Multiple roles can be imported creating <strong>a list of roles</strong> using commas to separate values.", 'import-users-from-csv-with-meta' ); ?></li>
48
+ </ul>
49
+ <em><?php _e( "Notice: If the default new role is administrator in WordPress settings, role will not be set during a CSV file import with this plugin. Check it if all users are being imported as administrators and you have set another role in this plugin.", 'import-users-from-csv-with-meta' ); ?></em>
50
+ </td>
51
+ </tr>
52
+ <tr valign="top">
53
+ <th scope="row"><?php _e( "Serialized data", 'import-users-from-csv-with-meta' ); ?></th>
54
+ <td><?php _e( "Plugin can now import serialized data. You have to use the serialized string directly in the CSV cell in order the plugin will be able to understand it as an serialized data instead as any other string.", 'import-users-from-csv-with-meta' ); ?>
55
+ </td>
56
+ </tr>
57
+ <tr valign="top">
58
+ <th scope="row"><?php _e( "Lists", 'import-users-from-csv-with-meta' ); ?></th>
59
+ <td><?php _e( "Plugin can now import lists an array. Use this separator:", 'import-users-from-csv-with-meta'); ?> <strong>::</strong> <?php _e("two colons, inside the cell in order to split the string in a list of items.", 'import-users-from-csv-with-meta' ); ?>
60
+ </td>
61
+ </tr>
62
+ <tr valign="top">
63
+ <th scope="row"><?php _e( 'WordPress default profile data', 'import-users-from-csv-with-meta' ); ?></th>
64
+ <td><?php _e( "You can use those labels if you want to set data adapted to the WordPress default user columns (the ones who use the function", 'import-users-from-csv-with-meta' ); ?> <a href="http://codex.wordpress.org/Function_Reference/wp_update_user">wp_update_user</a>)
65
+ <ol>
66
+ <li><strong>user_nicename</strong>: <?php _e( "A string that contains a URL-friendly name for the user. The default is the user's username.", 'import-users-from-csv-with-meta' ); ?></li>
67
+ <li><strong>user_url</strong>: <?php _e( "A string containing the user's URL for the user's web site.", 'import-users-from-csv-with-meta' ); ?> </li>
68
+ <li><strong>display_name</strong>: <?php _e( "A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through obscurity (that is if you don't use and delete the default admin user).", 'import-users-from-csv-with-meta' ); ?></li>
69
+ <li><strong>nickname</strong>: <?php _e( "The user's nickname, defaults to the user's username.", 'import-users-from-csv-with-meta' ); ?> </li>
70
+ <li><strong>first_name</strong>: <?php _e( "The user's first name.", 'import-users-from-csv-with-meta' ); ?></li>
71
+ <li><strong>last_name</strong>: <?php _e("The user's last name.", 'import-users-from-csv-with-meta' ); ?></li>
72
+ <li><strong>description</strong>: <?php _e("A string containing content about the user.", 'import-users-from-csv-with-meta' ); ?></li>
73
+ <li><strong>jabber</strong>: <?php _e("User's Jabber account.", 'import-users-from-csv-with-meta' ); ?></li>
74
+ <li><strong>aim</strong>: <?php _e("User's AOL IM account.", 'import-users-from-csv-with-meta' ); ?></li>
75
+ <li><strong>yim</strong>: <?php _e("User's Yahoo IM account.", 'import-users-from-csv-with-meta' ); ?></li>
76
+ <li><strong>user_registered</strong>: <?php _e( "Using the WordPress format for this kind of data Y-m-d H:i:s.", "import-users-from-csv-with-meta "); ?></li>
77
+ </ol>
78
+ </td>
79
+ </tr>
80
+
81
+ <?php if( is_plugin_active( 'woocommerce/woocommerce.php' ) ): ?>
82
+
83
+ <tr valign="top">
84
+ <th scope="row"><?php _e( "WooCommerce is activated", 'import-users-from-csv-with-meta' ); ?></th>
85
+ <td><?php _e( "You can use those labels if you want to set data adapted to the WooCommerce default user columns", 'import-users-from-csv-with-meta' ); ?>
86
+ <ol>
87
+ <li>billing_first_name</li>
88
+ <li>billing_last_name</li>
89
+ <li>billing_company</li>
90
+ <li>billing_address_1</li>
91
+ <li>billing_address_2</li>
92
+ <li>billing_city</li>
93
+ <li>billing_postcode</li>
94
+ <li>billing_country</li>
95
+ <li>billing_state</li>
96
+ <li>billing_phone</li>
97
+ <li>billing_email</li>
98
+ <li>shipping_first_name</li>
99
+ <li>shipping_last_name</li>
100
+ <li>shipping_company</li>
101
+ <li>shipping_address_1</li>
102
+ <li>shipping_address_2</li>
103
+ <li>shipping_city</li>
104
+ <li>shipping_postcode</li>
105
+ <li>shipping_country</li>
106
+ <li>shipping_state</li>
107
+ </ol>
108
+ </td>
109
+ </tr>
110
+ <?php endif; ?>
111
+
112
+ <?php if( is_plugin_active( 'buddypress/bp-loader.php' ) ): ?>
113
+
114
+ <tr valign="top">
115
+ <th scope="row"><?php _e( "BuddyPress is activated", 'import-users-from-csv-with-meta' ); ?></th>
116
+ <td><?php _e( "You can use the <strong>profile fields</strong> you have created and also you can set one or more groups for each user. For example:", 'import-users-from-csv-with-meta' ); ?>
117
+ <ul style="list-style:disc outside none; margin-left:2em;">
118
+ <li><?php _e( "If you want to assign an user to a group you have to create a column 'bp_group' and a column 'bp_group_role'", 'import-users-from-csv-with-meta' ); ?></li>
119
+ <li><?php _e( "Then in each cell you have to fill with the BuddyPress <strong>group slug</strong>", 'import-users-from-csv-with-meta' ); ?></li>
120
+ <li><?php _e( "And the role assigned in this group: <em>Administrator, Moderator or Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
121
+ <li><?php _e( "You can do it with multiple groups at the same time using commas to separate different groups, in bp_group column, i.e.: <em>group_1, group_2, group_3</em>", 'import-users-from-csv-with-meta' ); ?></li>
122
+ <li><?php _e( "But you will have to assign a role for each group: <em>Moderator,Moderator,Member,Member</em>", 'import-users-from-csv-with-meta' ); ?></li>
123
+ <li><?php _e( "If you get some error of this kind:", 'import-users-from-csv-with-meta' ); ?> <code>Fatal error: Class 'BP_XProfile_Group'</code> <?php _e( "please enable Buddypress Extended Profile then import the csv file. You can then disable this afterwards", 'import-users-from-csv-with-meta' ); ?></li>
124
+ </ul>
125
+ </td>
126
+ </tr>
127
+
128
+ <?php endif; ?>
129
+
130
+ <?php do_action( 'acui_documentation_after_plugins_activated' ); ?>
131
+
132
+ <tr valign="top">
133
+ <th scope="row"><?php _e( "Important notice", 'import-users-from-csv-with-meta' ); ?></th>
134
+ <td><?php _e( "You can upload as many files as you want, but all must have the same columns. If you upload another file, the columns will change to the form of last file uploaded.", 'import-users-from-csv-with-meta' ); ?></td>
135
+ </tr>
136
+ <tr valign="top">
137
+ <th scope="row"><?php _e( "Any question about it", 'import-users-from-csv-with-meta' ); ?></th>
138
+ <td>
139
+ <ul style="list-style:disc outside none; margin-left:2em;">
140
+ <li><?php _e( 'Free support (in WordPress forums):', 'import-users-from-csv-with-meta' ); ?> <a href="https://wordpress.org/support/plugin/import-users-from-csv-with-meta">https://wordpress.org/support/plugin/import-users-from-csv-with-meta</a>.</li>
141
+ <li><?php _e( 'Premium support (with a quote):', 'import-users-from-csv-with-meta' ); ?> <a href="mailto:contacto@codection.com">contacto@codection.com</a>.</li>
142
+ </ul>
143
+ </td>
144
+ </tr>
145
+ <tr valign="top">
146
+ <th scope="row"><?php _e( 'Example', 'import-users-from-csv-with-meta' ); ?></th>
147
+ <td><?php _e( 'Download this', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo esc_url( plugins_url( 'test.csv', dirname( __FILE__ ) ) ); ?>">.csv <?php _e('file','import-users-from-csv-with-meta'); ?></a> <?php _e( 'to test', 'import-users-from-csv-with-meta' ); ?></td>
148
+ </tr>
149
+ </tbody>
150
+ </table>
151
+ <br/>
152
+ <div style="width:775px;margin:0 auto"><img src="<?php echo esc_url( plugins_url( 'csv_example.png', dirname( __FILE__ ) ) ); ?>"/></div>
153
+ <?php
154
+ }
155
+ }
trunk/classes/donate.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Donate{
6
+ public static function message(){
7
+ ?>
8
+ <div class="postbox">
9
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Do you like it?', 'import-users-from-csv-with-meta' ); ?></span></h3>
10
+
11
+ <div class="inside" style="display: block;">
12
+ <img src="<?php echo esc_url( plugins_url( 'assets/icon_coffee.png', dirname( __FILE__ ) ) ); ?>" alt="<?php _e( 'buy me a coffee', 'import-users-from-csv-with-meta' ); ?>" style=" margin: 5px; float:left;">
13
+ <p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta'); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a> <?php _e( 'and all the team of', 'import-users-from-csv-with-meta' ); ?> <a href="http://codection.com">Codection</a>, <?php _e("developers of this plugin.", 'import-users-from-csv-with-meta' ); ?></p>
14
+ <p><?php _e( 'We have been spending many hours to develop this plugin and answering questions in the forum to give you the best support. <br>If you like and use this plugin, you can <strong>buy us a cup of coffee</strong>.', 'import-users-from-csv-with-meta' ); ?></p>
15
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
16
+ <input type="hidden" name="cmd" value="_s-xclick">
17
+ <input type="hidden" name="hosted_button_id" value="QPYVWKJG4HDGG">
18
+ <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('PayPal – The safer, easier way to pay online.', 'import-users-from-csv-with-meta' ); ?>">
19
+ <img alt="" border="0" src="https://www.paypalobjects.com/es_ES/i/scr/pixel.gif" width="1" height="1">
20
+ </form>
21
+ <div style="clear:both;"></div>
22
+ </div>
23
+
24
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Or if you prefer, you can also help us becoming a Patreon:', 'import-users-from-csv-with-meta' ); ?></span></h3>
25
+
26
+ <div class="inside acui" style="display: block;">
27
+ <a class="patreon" color="primary" type="button" name="become-a-patron" data-tag="become-patron-button" href="https://www.patreon.com/bePatron?c=1741454" role="button">
28
+ <div class="oosjif-1 jFPfxp"><span>Become a patron</span></div>
29
+ </a>
30
+ </div>
31
+ </div>
32
+ <?php
33
+ }
34
+ }
trunk/classes/email-options.php ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Email_Options{
6
+ function __construct(){
7
+ add_action( 'admin_enqueue_scripts', array( $this, 'load_scripts' ), 10, 1 );
8
+ add_action( 'wp_ajax_acui_mail_options_remove_attachment', array( $this, 'ajax_remove_attachment' ) );
9
+ }
10
+
11
+ public static function admin_gui(){
12
+ $from_email = get_option( "acui_mail_from" );
13
+ $from_name = get_option( "acui_mail_from_name" );
14
+ $body_mail = get_option( "acui_mail_body" );
15
+ $subject_mail = get_option( "acui_mail_subject" );
16
+ $template_id = get_option( "acui_mail_template_id" );
17
+ $attachment_id = get_option( "acui_mail_attachment_id" );
18
+ $enable_email_templates = get_option( "acui_enable_email_templates" );
19
+ $automatic_wordpress_email = get_option( "acui_automatic_wordpress_email" );
20
+ ?>
21
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
22
+ <h3><?php _e('Mail options','import-users-from-csv-with-meta'); ?></h3>
23
+
24
+ <table class="optiontable form-table">
25
+ <tbody>
26
+ <tr valign="top">
27
+ <th scope="row"><?php _e( 'WordPress automatic emails users updated', 'import-users-from-csv-with-meta' ); ?></th>
28
+ <td>
29
+ <fieldset>
30
+ <legend class="screen-reader-text">
31
+ <span><?php _e( 'Send automatic WordPress emails?', 'import-users-from-csv-with-meta' ); ?></span>
32
+ </legend>
33
+ <label for="automatic_wordpress_email">
34
+ <select name="automatic_wordpress_email" id="automatic_wordpress_email">
35
+ <option <?php if( $automatic_wordpress_email == 'false' ) echo "selected='selected'"; ?> value="false"><?php _e( "Deactivate WordPress automatic email when an user is updated or his password is changed", 'import-users-from-csv-with-meta' ) ;?></option>
36
+ <option <?php if( $automatic_wordpress_email == 'true' ) echo "selected='selected'"; ?> value="true"><?php _e( 'Activate WordPress automatic email when an user is updated or his password is changed', 'import-users-from-csv-with-meta' ); ?></option>
37
+ </select>
38
+ <span class="description"><? _e( "When you update an user or change his password, WordPress prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv-with-meta' ); ?></span>
39
+ </label>
40
+ </fieldset>
41
+ </td>
42
+ </tr>
43
+ <tr valign="top">
44
+ <th scope="row"><?php _e( 'Enable mail templates:', 'import-users-from-csv-with-meta' ); ?></th>
45
+ <td>
46
+ <fieldset>
47
+ <legend class="screen-reader-text">
48
+ <span><?php _e( 'Do you want to enable mail templates?', 'import-users-from-csv-with-meta' ); ?></span>
49
+ </legend>
50
+ <label for="enable_email_templates">
51
+ <input id="enable_email_templates" name="enable_email_templates" value="yes" type="checkbox" <?php checked( $enable_email_templates ); ?>>
52
+ <span class="description"><? _e( "If you activate it, a new option in the menu will be created to store and manage mail templates, instead of using only the next one.", 'import-users-from-csv-with-meta' ); ?></span>
53
+ </label>
54
+ </fieldset>
55
+ </td>
56
+ </tr>
57
+ </tbody>
58
+ </table>
59
+
60
+ <?php if( $enable_email_templates && wp_count_posts( 'acui_email_template' )->publish > 0 ): ?>
61
+ <h3><?php _e( 'Load custom email from email templates', 'import-users-from-csv-with-meta' ); ?></h3>
62
+ <?php wp_dropdown_pages( array( 'id' => 'email_template_selected', 'post_type' => 'acui_email_template', 'selected' => $template_id ) ); ?>
63
+ <input id="load_email_template" class="button-primary" type="button" value="<?php _e( "Load subject, content and attachment from this email template", 'import-users-from-csv-with-meta' ); ?>"/>
64
+ <?php endif; ?>
65
+
66
+ <h3><?php _e( 'Customize the email that can be sent when importing users', 'import-users-from-csv-with-meta' ); ?></h3>
67
+
68
+ <p><?php _e( 'Mail subject :', 'import-users-from-csv-with-meta' ); ?><input name="subject_mail" size="100" value="<?php echo $subject_mail; ?>" id="title" autocomplete="off" type="text"></p>
69
+ <?php wp_editor( $body_mail, 'body_mail'); ?>
70
+ <input type="hidden" id="template_id" name="template_id" value="<?php echo $template_id; ?>"/>
71
+
72
+ <fieldset>
73
+ <div>
74
+ <label for="email_template_attachment_file"><?php _e( 'Attachment', 'import-users-from-csv-with-meta' )?></label><br>
75
+ <input type="url" class="large-text" name="email_template_attachment_file" id="email_template_attachment_file" value="<?php echo wp_get_attachment_url( $attachment_id ); ?>" readonly/><br>
76
+ <input type="hidden" name="email_template_attachment_id" id="email_template_attachment_id" value="<?php echo $attachment_id ?>"/>
77
+ <button type="button" class="button" id="acui_email_option_upload_button"><?php _e( 'Upload file', 'import-users-from-csv-with-meta' )?></button>
78
+ <button type="button" class="button" id="acui_email_option_remove_upload_button"><?php _e( 'Remove file', 'import-users-from-csv-with-meta' )?></button>
79
+ </div>
80
+ </fieldset>
81
+
82
+ <br/>
83
+ <input class="button-primary" type="submit" value="<?php _e( 'Save email template and options', 'import-users-from-csv-with-meta'); ?>" id="save_mail_template_options"/>
84
+
85
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
86
+
87
+ <?php ACUI_Email_Template::email_templates_edit_form_after_editor(); ?>
88
+
89
+ </form>
90
+ <?php
91
+ }
92
+
93
+ function load_scripts( $hook ) {
94
+ global $typenow;
95
+
96
+ if( $typenow == 'acui_email_template' || $hook == 'tools_page_acui' ) {
97
+ wp_enqueue_media();
98
+ wp_register_script( 'email-template-attachment-admin', esc_url( plugins_url( 'assets/email-template-attachment-admin.js', dirname( __FILE__ ) ) ), array( 'jquery' ) );
99
+ wp_localize_script( 'email-template-attachment-admin', 'email_template_attachment_admin',
100
+ array(
101
+ 'title' => __( 'Choose or upload file', 'import-users-from-csv-with-meta' ),
102
+ 'button' => __( 'Use this file', 'import-users-from-csv-with-meta' ),
103
+ 'security' => wp_create_nonce( "codection-security" )
104
+ )
105
+ );
106
+ wp_enqueue_script( 'email-template-attachment-admin' );
107
+ }
108
+ }
109
+
110
+ function ajax_remove_attachment(){
111
+ check_ajax_referer( 'codection-security', 'security' );
112
+ update_option( "acui_mail_attachment_id", "" );
113
+ }
114
+ }
115
+
116
+ new ACUI_Email_Options();
trunk/classes/email-templates.php ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Email_Template{
6
+ function __construct(){
7
+ add_action( 'init', array( $this, 'cpt_email_template' ), 0 );
8
+ add_action( 'edit_form_after_editor', array( $this, 'email_templates_edit_form_after_editor' ), 10, 1 );
9
+ add_action( 'wp_ajax_acui_refresh_enable_email_templates', array( $this, 'refresh_enable_email_templates' ) );
10
+ add_action( 'wp_ajax_acui_email_template_selected', array( $this, 'email_template_selected' ) );
11
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
12
+ add_action( 'save_post', array( $this, 'save_post' ) );
13
+ }
14
+
15
+ function cpt_email_template() {
16
+ if( !get_option( 'acui_enable_email_templates' ) )
17
+ return;
18
+
19
+ $labels = array(
20
+ 'name' => _x( 'Email templates (Import Users From CSV With Meta)', 'Post Type General Name', 'import-users-from-csv-with-meta' ),
21
+ 'singular_name' => _x( 'Email template (Import Users From CSV With Meta)', 'Post Type Singular Name', 'import-users-from-csv-with-meta' ),
22
+ 'menu_name' => __( 'Email templates (Import Users)', 'import-users-from-csv-with-meta' ),
23
+ 'name_admin_bar' => __( 'Email templates (Import Users From CSV With Meta)', 'import-users-from-csv-with-meta' ),
24
+ 'archives' => __( 'Item Archives', 'import-users-from-csv-with-meta' ),
25
+ 'attributes' => __( 'Item Attributes', 'import-users-from-csv-with-meta' ),
26
+ 'parent_item_colon' => __( 'Parent Item:', 'import-users-from-csv-with-meta' ),
27
+ 'all_items' => __( 'All email template', 'import-users-from-csv-with-meta' ),
28
+ 'add_new_item' => __( 'Add new email template', 'import-users-from-csv-with-meta' ),
29
+ 'add_new' => __( 'Add new email template', 'import-users-from-csv-with-meta' ),
30
+ 'new_item' => __( 'New email template', 'import-users-from-csv-with-meta' ),
31
+ 'edit_item' => __( 'Edit email template', 'import-users-from-csv-with-meta' ),
32
+ 'update_item' => __( 'Update email template', 'import-users-from-csv-with-meta' ),
33
+ 'view_item' => __( 'View email template', 'import-users-from-csv-with-meta' ),
34
+ 'view_items' => __( 'View email templates', 'import-users-from-csv-with-meta' ),
35
+ 'search_items' => __( 'Search email template', 'import-users-from-csv-with-meta' ),
36
+ 'not_found' => __( 'Not found', 'import-users-from-csv-with-meta' ),
37
+ 'not_found_in_trash' => __( 'Not found in Trash', 'import-users-from-csv-with-meta' ),
38
+ 'featured_image' => __( 'Featured Image', 'import-users-from-csv-with-meta' ),
39
+ 'set_featured_image' => __( 'Set featured image', 'import-users-from-csv-with-meta' ),
40
+ 'remove_featured_image' => __( 'Remove featured image', 'import-users-from-csv-with-meta' ),
41
+ 'use_featured_image' => __( 'Use as featured image', 'import-users-from-csv-with-meta' ),
42
+ 'insert_into_item' => __( 'Insert into email template', 'import-users-from-csv-with-meta' ),
43
+ 'uploaded_to_this_item' => __( 'Uploaded to this email template', 'import-users-from-csv-with-meta' ),
44
+ 'items_list' => __( 'Items list', 'import-users-from-csv-with-meta' ),
45
+ 'items_list_navigation' => __( 'Email template list navigation', 'import-users-from-csv-with-meta' ),
46
+ 'filter_items_list' => __( 'Filter email template list', 'import-users-from-csv-with-meta' ),
47
+ );
48
+ $args = array(
49
+ 'label' => __( 'Mail template (Import Users From CSV With Meta)', 'import-users-from-csv-with-meta' ),
50
+ 'description' => __( 'Mail templates for Import Users From CSV With Meta', 'import-users-from-csv-with-meta' ),
51
+ 'labels' => $labels,
52
+ 'supports' => array( 'title', 'editor' ),
53
+ 'hierarchical' => true,
54
+ 'public' => false,
55
+ 'show_ui' => true,
56
+ 'show_in_menu' => true,
57
+ 'menu_position' => 100,
58
+ 'menu_icon' => 'dashicons-email',
59
+ 'show_in_admin_bar' => true,
60
+ 'show_in_nav_menus' => false,
61
+ 'can_export' => true,
62
+ 'has_archive' => false,
63
+ 'exclude_from_search' => true,
64
+ 'publicly_queryable' => false,
65
+ 'rewrite' => false,
66
+ 'capability_type' => 'page',
67
+ );
68
+ register_post_type( 'acui_email_template', $args );
69
+
70
+ }
71
+
72
+ public static function email_templates_edit_form_after_editor( $post = "" ){
73
+ if( !empty( $post ) && $post->post_type != 'acui_email_template' )
74
+ return;
75
+ ?>
76
+ <p><?php _e( 'You can use', 'import-users-from-csv-with-meta' ); ?></p>
77
+ <ul style="list-style-type:disc; margin-left:2em;">
78
+ <li>**username** = <?php _e( 'username to login', 'import-users-from-csv-with-meta' ); ?></li>
79
+ <li>**password** = <?php _e( 'user password', 'import-users-from-csv-with-meta' ); ?></li>
80
+ <li>**loginurl** = <?php _e( 'current site login url', 'import-users-from-csv-with-meta' ); ?></li>
81
+ <li>**lostpasswordurl** = <?php _e( 'lost password url', 'import-users-from-csv-with-meta' ); ?></li>
82
+ <li>**passwordreseturl** = <?php _e( 'password reset url', 'import-users-from-csv-with-meta' ); ?></li>
83
+ <li>**passwordreseturllink** = <?php _e( 'password reset url with HTML link', 'import-users-from-csv-with-meta' ); ?></li>
84
+ <li>**email** = <?php _e( 'user email', 'import-users-from-csv-with-meta' ); ?></li>
85
+ <li><?php _e( "You can also use any WordPress user standard field or an own metadata, if you have used it in your CSV. For example, if you have a first_name column, you could use **first_name** or any other meta_data like **my_custom_meta**", 'import-users-from-csv-with-meta' ) ;?></li>
86
+ </ul>
87
+ <?php
88
+ }
89
+
90
+ function refresh_enable_email_templates(){
91
+ check_ajax_referer( 'codection-security', 'security' );
92
+ update_option( 'acui_enable_email_templates', ( $_POST[ 'enable' ] == "true" ) );
93
+ wp_die();
94
+ }
95
+
96
+ function email_template_selected(){
97
+ check_ajax_referer( 'codection-security', 'security' );
98
+ $email_template = get_post( intval( $_POST['email_template_selected'] ) );
99
+ $attachment_id = get_post_meta( $email_template->ID, 'email_template_attachment_id', true );
100
+
101
+ echo json_encode( array(
102
+ 'id' => $email_template->ID,
103
+ 'title' => $email_template->post_title,
104
+ 'content' => wpautop( $email_template->post_content ),
105
+ 'attachment_id' => $attachment_id,
106
+ 'attachment_url' => wp_get_attachment_url( $attachment_id ),
107
+ ) );
108
+
109
+ wp_die();
110
+ }
111
+
112
+ function add_meta_boxes(){
113
+ add_meta_box( 'email_template_attachments',
114
+ __( 'Attachment', 'import-users-from-csv-with-meta' ),
115
+ array( $this, 'email_template_attachments' ),
116
+ 'acui_email_template',
117
+ 'side',
118
+ 'core' );
119
+ }
120
+
121
+ public function email_template_attachments( $post ){
122
+ $email_template_attachment_id = get_post_meta( $post->ID, 'email_template_attachment_id', true );
123
+ ?>
124
+ <fieldset>
125
+ <div>
126
+ <label for="email_template_attachment_file"><?php _e( 'Attachment', 'import-users-from-csv-with-meta' )?></label><br>
127
+ <input type="url" class="large-text" name="email_template_attachment_file" id="email_template_attachment_file" value="<?php echo wp_get_attachment_url( $email_template_attachment_id ); ?>" readonly/><br>
128
+ <input type="hidden" name="email_template_attachment_id" id="email_template_attachment_id" value="<?php echo $email_template_attachment_id ?>"/>
129
+ <button type="button" class="button" id="acui_email_template_upload_button"><?php _e( 'Upload file', 'import-users-from-csv-with-meta' )?></button>
130
+ <button type="button" class="button" id="acui_email_template_remove_upload_button"><?php _e( 'Remove file', 'import-users-from-csv-with-meta' )?></button>
131
+ </div>
132
+ </fieldset>
133
+ <?php
134
+ wp_nonce_field( 'acui_email_template_attachment', 'acui_email_template_attachment' );
135
+ }
136
+
137
+ function save_post( $post_id ){
138
+ if( !isset( $_POST['acui_email_template_attachment'] ) )
139
+ return $post_id;
140
+
141
+ if( !wp_verify_nonce( $_POST['acui_email_template_attachment'], 'acui_email_template_attachment' ) ) {
142
+ return $post_id;
143
+ }
144
+
145
+ if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
146
+ return $post_id;
147
+ }
148
+
149
+ if( 'acui_email_template' != $_POST['post_type'] ) {
150
+ return $post_id;
151
+ }
152
+
153
+ update_post_meta( $post_id, 'email_template_attachment_id', intval( $_POST['email_template_attachment_id'] ) );
154
+ }
155
+ }
156
+
157
+ new ACUI_Email_Template();
trunk/classes/export.php ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) exit;
3
+
4
+ class ACUI_Exporter{
5
+ private $path_csv;
6
+ private $user_data;
7
+
8
+ function __construct(){
9
+ $upload_dir = wp_upload_dir();
10
+
11
+ $this->path_csv = $upload_dir['basedir'] . "/export-users.csv";
12
+ $this->user_data = array( "user_login", "user_email", "ID", "user_pass", "user_nicename", "user_url", "user_registered", "display_name" );
13
+
14
+ add_action( 'wp_ajax_acui_export_users_csv', array( $this, 'export_users_csv' ) );
15
+ }
16
+
17
+ public static function admin_gui(){
18
+ $roles = acui_get_editable_roles();
19
+ ?>
20
+ <h3><?php _e( 'Export users', 'import-users-from-csv-with-meta' ); ?></h3>
21
+ <form method="POST" target="_blank" enctype="multipart/form-data" action="<?php echo admin_url( 'admin-ajax.php' ); ?>">
22
+ <table class="form-table">
23
+ <tbody>
24
+ <tr valign="top">
25
+ <th scope="row"><?php _e( 'Role', 'import-users-from-csv-with-meta' ); ?></th>
26
+ <td>
27
+ <select name="role">
28
+ <option value=''><?php _e( 'All roles', 'import-users-from-csv-with-meta' ); ?></option>
29
+ <?php foreach ( $roles as $key => $value ): ?>
30
+ <option value='<?php echo $key; ?>'><?php echo $value; ?></option>
31
+ <?php endforeach; ?>
32
+ </select>
33
+ </td>
34
+ </tr>
35
+ <tr valign="top">
36
+ <th scope="row"><?php _e( 'User created', 'import-users-from-csv-with-meta' ); ?></th>
37
+ <td>
38
+ <label>from <input name="from" type="date" value=""/></label>
39
+ <label>to <input name="to" type="date" value=""/></label>
40
+ </td>
41
+ </tr>
42
+ <tr valign="top">
43
+ <th scope="row"><?php _e( 'Delimiter', 'import-users-from-csv-with-meta' ); ?></th>
44
+ <td>
45
+ <select name="delimiter">
46
+ <option value='COMMA'><?php _e( 'Comma', 'import-users-from-csv-with-meta' ); ?></option>
47
+ <option value='COLON'><?php _e( 'Colon', 'import-users-from-csv-with-meta' ); ?></option>
48
+ <option value='SEMICOLON'><?php _e( 'Semicolon', 'import-users-from-csv-with-meta' ); ?></option>
49
+ <option value='TAB'><?php _e( 'Tab', 'import-users-from-csv-with-meta' ); ?></option>
50
+ </select>
51
+ </td>
52
+ </tr>
53
+ <tr valign="top">
54
+ <th scope="row"><?php _e( 'Datetime format', 'import-users-from-csv-with-meta' ); ?></th>
55
+ <td>
56
+ <input name="datetime_format" type="text" value="Y-m-d H:i:s"/>
57
+ </td>
58
+ </tr>
59
+ <tr valign="top">
60
+ <th scope="row"><?php _e( 'Download CSV file with users', 'import-users-from-csv-with-meta' ); ?></th>
61
+ <td>
62
+ <input class="button-primary" type="submit" value="<?php _e( 'Download', 'import-users-from-csv-with-meta'); ?>"/>
63
+ </td>
64
+ </tr>
65
+ </tbody>
66
+ </table>
67
+ <input type="hidden" name="action" value="acui_export_users_csv"/>
68
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
69
+ </form>
70
+
71
+ <script type="text/javascript">
72
+ jQuery( document ).ready( function( $ ){
73
+ $( "input[name='from']" ).change( function() {
74
+ $( "input[name='to']" ).attr( 'min', $( this ).val() );
75
+ })
76
+ } )
77
+ </script>
78
+ <?php
79
+ }
80
+
81
+ function prepare( $key, $value, $datetime_format ){
82
+ $timestamp_keys = array( 'wc_last_active' );
83
+
84
+ if( is_array( $value ) )
85
+ return serialize( $value );
86
+ elseif( strtotime( $value ) ){ // dates in datetime format
87
+ return date( $datetime_format, strtotime( $value ) );
88
+ }
89
+ elseif( in_array( $key, $timestamp_keys) ){ // dates in timestamp format
90
+ return date( $datetime_format, $value );
91
+ }
92
+ else
93
+ return $value;
94
+ }
95
+
96
+ function export_users_csv(){
97
+ check_ajax_referer( 'codection-security', 'security' );
98
+
99
+ if( !current_user_can( 'create_users' ) )
100
+ wp_die( __( 'Only users who are able to create users can export them.', 'import-users-from-csv-with-meta' ) );
101
+
102
+ $role = sanitize_text_field( $_POST['role'] );
103
+ $from = sanitize_text_field( $_POST['from'] );
104
+ $to = sanitize_text_field( $_POST['to'] );
105
+ $delimiter = sanitize_text_field( $_POST['delimiter'] );
106
+ $datetime_format = sanitize_text_field( $_POST['datetime_format'] );
107
+
108
+ switch ( $delimiter ) {
109
+ case 'COMMA':
110
+ $delimiter = ",";
111
+ break;
112
+
113
+ case 'COLON':
114
+ $delimiter = ":";
115
+ break;
116
+
117
+ case 'SEMICOLON':
118
+ $delimiter = ";";
119
+ break;
120
+
121
+ case 'TAB':
122
+ $delimiter = "\t";
123
+ break;
124
+ }
125
+
126
+ $data = array();
127
+ $row = array();
128
+
129
+ // header
130
+ foreach ( $this->user_data as $key ) {
131
+ $row[] = $key;
132
+ }
133
+
134
+ foreach ( $this->get_user_meta_key() as $key ) {
135
+ $row[] = $key;
136
+ }
137
+
138
+ $data[] = $row;
139
+ $row = array();
140
+
141
+ // data
142
+ $users = $this->get_user_id_list( $role, $from, $to );
143
+ foreach ( $users as $user ) {
144
+ $userdata = get_userdata( $user );
145
+
146
+ foreach ( $this->user_data as $key ) {
147
+ $row[] = $this->prepare( $key, $userdata->data->{$key}, $datetime_format );
148
+ }
149
+
150
+ foreach ( $this->get_user_meta_key() as $key ) {
151
+ $row[] = $this->prepare( $key, get_user_meta( $user, $key, true ), $datetime_format );
152
+ }
153
+
154
+ $data[] = $row;
155
+ $row = array();
156
+ }
157
+
158
+ // export to csv
159
+ $file = fopen( $this->path_csv, "w" );
160
+
161
+ foreach ( $data as $line ) {
162
+ fputcsv( $file, $line, $delimiter );
163
+ }
164
+
165
+ fclose( $file );
166
+
167
+ $fsize = filesize( $this->path_csv );
168
+ $path_parts = pathinfo( $this->path_csv );
169
+ header( "Content-type: text/csv" );
170
+ header( "Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\"" );
171
+ header( "Content-length: $fsize" );
172
+ header( "Cache-control: private" );
173
+ header('Content-Description: File Transfer');
174
+ header('Content-Transfer-Encoding: binary');
175
+ header('Expires: 0');
176
+ header('Cache-Control: must-revalidate');
177
+ header('Pragma: public');
178
+
179
+ ob_clean();
180
+ flush();
181
+ readfile( $this->path_csv );
182
+
183
+ unlink( $this->path_csv );
184
+
185
+ wp_die();
186
+ }
187
+
188
+ function get_user_meta_key() {
189
+ global $wpdb;
190
+ $meta_keys = array();
191
+
192
+ $select = "SELECT distinct $wpdb->usermeta.meta_key FROM $wpdb->usermeta";
193
+ $usermeta = $wpdb->get_results( $select, ARRAY_A );
194
+
195
+ foreach ($usermeta as $key => $value) {
196
+ $meta_keys[] = $value["meta_key"];
197
+ }
198
+ return $meta_keys;
199
+ }
200
+
201
+ function get_user_id_list( $role, $from, $to ){
202
+ $args = array( 'fields' => array( 'ID' ) );
203
+
204
+ if( !empty( $role ) )
205
+ $args['role'] = $role;
206
+
207
+ $date_query = array();
208
+
209
+ if( !empty( $from ) )
210
+ $date_query[] = array( 'after' => $from );
211
+
212
+ if( !empty( $to ) )
213
+ $date_query[] = array( 'before' => $to );
214
+
215
+ if( !empty( $date_query ) ){
216
+ $date_query['inclusive'] = true;
217
+ $args['date_query'] = $date_query;
218
+ }
219
+
220
+ $users = get_users( $args );
221
+ $list = array();
222
+
223
+ foreach ( $users as $user ) {
224
+ $list[] = $user->ID;
225
+ }
226
+
227
+ return $list;
228
+ }
229
+ }
230
+
231
+ $acui_exporter = new ACUI_Exporter();
trunk/classes/frontend.php ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Frontend{
6
+ public static function admin_gui(){
7
+ $send_mail_frontend = get_option( "acui_frontend_send_mail" );
8
+ $send_mail_updated_frontend = get_option( "acui_frontend_send_mail_updated" );
9
+ $delete_users_frontend = get_option( "acui_frontend_delete_users" );
10
+ $delete_users_assign_posts_frontend = get_option( "acui_frontend_delete_users_assign_posts" );
11
+ $change_role_not_present_frontend = get_option( "acui_frontend_change_role_not_present" );
12
+ $change_role_not_present_role_frontend = get_option( "acui_frontend_change_role_not_present_role" );
13
+ $role = get_option( "acui_frontend_role" );
14
+ $activate_users_wp_members = get_option( "acui_frontend_activate_users_wp_members" );
15
+
16
+ if( empty( $send_mail_frontend ) )
17
+ $send_mail_frontend = false;
18
+
19
+ if( empty( $send_mail_updated_frontend ) )
20
+ $send_mail_updated_frontend = false;
21
+ ?>
22
+ <h3><?php _e( "Execute an import of users in the frontend", 'import-users-from-csv-with-meta' ); ?></h3>
23
+
24
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8">
25
+ <table class="form-table">
26
+ <tbody>
27
+
28
+ <tr class="form-field">
29
+ <th scope="row"><label for=""><?php _e( 'Use this shortcode in any page or post', 'import-users-from-csv-with-meta' ); ?></label></th>
30
+ <td>
31
+ <pre>[import-users-from-csv-with-meta]</pre>
32
+ <input class="button-primary" type="button" id="copy_to_clipboard" value="<?php _e( 'Copy to clipboard', 'import-users-from-csv-with-meta'); ?>"/>
33
+ </td>
34
+ </tr>
35
+
36
+ <tr class="form-field form-required">
37
+ <th scope="row"><label for="role"><?php _e( 'Role', 'import-users-from-csv-with-meta' ); ?></label></th>
38
+ <td>
39
+ <select id="role-frontend" name="role-frontend">
40
+ <?php
41
+ if( $role == '' )
42
+ echo "<option selected='selected' value=''>" . __( 'Disable role assignment in frontend import', 'import-users-from-csv-with-meta' ) . "</option>";
43
+ else
44
+ echo "<option value=''>" . __( 'Disable role assignment in frontend import', 'import-users-from-csv-with-meta' ) . "</option>";
45
+
46
+ $list_roles = acui_get_editable_roles();
47
+ foreach ($list_roles as $key => $value) {
48
+ if($key == $role)
49
+ echo "<option selected='selected' value='$key'>$value</option>";
50
+ else
51
+ echo "<option value='$key'>$value</option>";
52
+ }
53
+ ?>
54
+ </select>
55
+ <p class="description"><?php _e( 'Which role would be used to import users?', 'import-users-from-csv-with-meta' ); ?></p>
56
+ </td>
57
+ </tr>
58
+
59
+ <tr class="form-field form-required">
60
+ <th scope="row"><label for="send-mail-frontend"><?php _e( 'Send mail when using frontend import?', 'import-users-from-csv-with-meta' ); ?></label></th>
61
+ <td>
62
+ <input type="checkbox" name="send-mail-frontend" value="yes" <?php if( $send_mail_frontend == true ) echo "checked='checked'"; ?>/>
63
+ </td>
64
+ </tr>
65
+
66
+ <tr class="form-field form-required">
67
+ <th scope="row"><label for="send-mail-updated-frontend"><?php _e( 'Send mail also to users that are being updated?', 'import-users-from-csv-with-meta' ); ?></label></th>
68
+ <td>
69
+ <input type="checkbox" name="send-mail-updated-frontend" value="yes" <?php if( $send_mail_updated_frontend == true ) echo "checked='checked'"; ?>/>
70
+ </td>
71
+ </tr>
72
+ </tbody>
73
+ </table>
74
+
75
+ <h2><?php _e( 'Users not present in CSV file', 'import-users-from-csv-with-meta'); ?></h2>
76
+ <table class="form-table">
77
+ <tbody>
78
+
79
+ <tr class="form-field form-required">
80
+ <th scope="row"><label for="delete-users-frontend"><?php _e( 'Delete users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
81
+ <td>
82
+ <div style="float:left; margin-top: 10px;">
83
+ <input type="checkbox" name="delete-users-frontend" value="yes" <?php if( $delete_users_frontend == true ) echo "checked='checked'"; ?>/>
84
+ </div>
85
+ <div style="margin-left:25px;">
86
+ <select id="delete-users-assign-posts-frontend" name="delete-users-assign-posts-frontend">
87
+ <?php
88
+ if( $delete_users_assign_posts_frontend == '' )
89
+ echo "<option selected='selected' value=''>" . __( 'Delete posts of deleted users without assigning to any user', 'import-users-from-csv-with-meta' ) . "</option>";
90
+ else
91
+ echo "<option value=''>" . __( 'Delete posts of deleted users without assigning to any user', 'import-users-from-csv-with-meta' ) . "</option>";
92
+
93
+ $blogusers = get_users( array( 'fields' => array( 'ID', 'display_name' ) ) );
94
+
95
+ foreach ( $blogusers as $bloguser ) {
96
+ if( $bloguser->ID == $delete_users_assign_posts_frontend )
97
+ echo "<option selected='selected' value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
98
+ else
99
+ echo "<option value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
100
+ }
101
+ ?>
102
+ </select>
103
+ <p class="description"><?php _e( 'After delete users, we can choose if we want to assign their posts to another user. Please do not delete them or posts will be deleted.', 'import-users-from-csv-with-meta' ); ?></p>
104
+ </div>
105
+ </td>
106
+ </tr>
107
+
108
+ <tr class="form-field form-required">
109
+ <th scope="row"><label for="change-role-not-present-frontend"><?php _e( 'Change role of users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
110
+ <td>
111
+ <div style="float:left; margin-top: 10px;">
112
+ <input type="checkbox" name="change-role-not-present-frontend" value="yes" <?php checked( $change_role_not_present_frontend ); ?> />
113
+ </div>
114
+ <div style="margin-left:25px;">
115
+ <select id="change-role-not-present-role-frontend" name="change-role-not-present-role-frontend">
116
+ <?php
117
+ $list_roles = acui_get_editable_roles();
118
+ foreach ($list_roles as $key => $value):
119
+ ?>
120
+ <option value='<?php echo $key; ?>' <?php selected( $change_role_not_present_role_frontend, $key ); ?>><?php echo $value; ?></option>
121
+ <?php endforeach; ?>
122
+ </select>
123
+ <p class="description"><?php _e( 'After import users which is not present in the CSV and can be changed to a different role.', 'import-users-from-csv-with-meta' ); ?></p>
124
+ </div>
125
+ </td>
126
+ </tr>
127
+ </tbody>
128
+ </table>
129
+
130
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
131
+ <input class="button-primary" type="submit" value="<?php _e( 'Save frontend import options', 'import-users-from-csv-with-meta'); ?>"/>
132
+ </form>
133
+
134
+ <script>
135
+ jQuery( document ).ready( function( $ ){
136
+ $( '#copy_to_clipboard' ).click( function(){
137
+ var $temp = $("<input>");
138
+ $("body").append($temp);
139
+ $temp.val( '[import-users-from-csv-with-meta]' ).select();
140
+ document.execCommand("copy");
141
+ $temp.remove();
142
+ } );
143
+ });
144
+ </script>
145
+ <?php
146
+ }
147
+ }
trunk/classes/help.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Help{
6
+ public static function message(){
7
+ ?>
8
+ <div class="postbox">
9
+ <h3 class="hndle"><span>&nbsp;<?php _e( 'Need help with WordPress or WooCommerce?', 'import-users-from-csv-with-meta' ); ?></span></h3>
10
+
11
+ <div class="inside" style="display: block;">
12
+ <p><?php _e( 'Hi! we are', 'import-users-from-csv-with-meta' ); ?> <a href="https://twitter.com/fjcarazo" target="_blank" title="Javier Carazo">Javier Carazo</a> <?php _e( 'and the team of', 'import-users-from-csv-with-meta' ) ?> <a href="http://codection.com">Codection</a>, <?php _e( 'developers of this plugin.', 'import-users-from-csv-with-meta' ); ?></p>
13
+ <p><?php _e( 'We work everyday with WordPress and WooCommerce, if you need help hire us, send us a message to', 'import-users-from-csv-with-meta' ); ?> <a href="mailto:contacto@codection.com">contacto@codection.com</a>.</p>
14
+ <div style="clear:both;"></div>
15
+ </div>
16
+ </div>
17
+ <?php
18
+ }
19
+ }
trunk/classes/homepage.php ADDED
@@ -0,0 +1,307 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ class ACUI_Homepage{
6
+ public static function admin_gui(){
7
+ $last_roles_used = empty( get_option( 'acui_last_roles_used' ) ) ? array( 'subscriber' ) : get_option( 'acui_last_roles_used' );
8
+ $args_old_csv = array( 'post_type'=> 'attachment', 'post_mime_type' => 'text/csv', 'post_status' => 'inherit', 'posts_per_page' => -1 );
9
+ $old_csv_files = new WP_Query( $args_old_csv );
10
+
11
+ acui_check_options();
12
+ ?>
13
+ <div class="wrap acui">
14
+
15
+ <?php if( $old_csv_files->found_posts > 0 ): ?>
16
+ <div class="postbox">
17
+ <div title="<?php _e( 'Click to open/close', 'import-users-from-csv-with-meta' ); ?>" class="handlediv">
18
+ <br>
19
+ </div>
20
+
21
+ <h3 class="hndle"><span>&nbsp;&nbsp;&nbsp;<?php _e( 'Old CSV files uploaded', 'import-users-from-csv-with-meta' ); ?></span></h3>
22
+
23
+ <div class="inside" style="display: block;">
24
+ <p><?php _e( 'For security reasons you should delete this files, probably they would be visible in the Internet if a bot or someone discover the URL. You can delete each file or maybe you want delete all CSV files you have uploaded:', 'import-users-from-csv-with-meta' ); ?></p>
25
+ <input type="button" value="<?php _e( 'Delete all CSV files uploaded', 'import-users-from-csv-with-meta' ); ?>" id="bulk_delete_attachment" style="float:right;" />
26
+ <ul>
27
+ <?php while($old_csv_files->have_posts()) :
28
+ $old_csv_files->the_post();
29
+
30
+ if( get_the_date() == "" )
31
+ $date = "undefined";
32
+ else
33
+ $date = get_the_date();
34
+ ?>
35
+ <li><a href="<?php echo wp_get_attachment_url( get_the_ID() ); ?>"><?php the_title(); ?></a> <?php _e( 'uploaded on', 'import-users-from-csv-with-meta' ) . ' ' . $date; ?> <input type="button" value="<?php _e( 'Delete', 'import-users-from-csv-with-meta' ); ?>" class="delete_attachment" attach_id="<?php the_ID(); ?>" /></li>
36
+ <?php endwhile; ?>
37
+ <?php wp_reset_postdata(); ?>
38
+ </ul>
39
+ <div style="clear:both;"></div>
40
+ </div>
41
+ </div>
42
+ <?php endif; ?>
43
+
44
+ <div id='message' class='updated'><?php _e( 'File must contain at least <strong>2 columns: username and email</strong>. These should be the first two columns and it should be placed <strong>in this order: username and email</strong>. If there are more columns, this plugin will manage it automatically.', 'import-users-from-csv-with-meta' ); ?></div>
45
+ <div id='message-password' class='error'><?php _e( 'Please, read carefully how <strong>passwords are managed</strong> and also take note about capitalization, this plugin is <strong>case sensitive</strong>.', 'import-users-from-csv-with-meta' ); ?></div>
46
+
47
+ <div>
48
+ <h2><?php _e( 'Import users from CSV','import-users-from-csv-with-meta' ); ?></h2>
49
+ </div>
50
+
51
+ <div style="clear:both;"></div>
52
+
53
+ <div class="main_bar">
54
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8" onsubmit="return check();">
55
+ <h2><?php _e( 'General', 'import-users-from-csv-with-meta'); ?></h2>
56
+ <table class="form-table">
57
+ <tbody>
58
+
59
+ <tr class="form-field form-required">
60
+ <th scope="row"><label><?php _e( 'CSV file <span class="description">(required)</span></label>', 'import-users-from-csv-with-meta' ); ?></th>
61
+ <td>
62
+ <div id="upload_file">
63
+ <input type="file" name="uploadfile" id="uploadfile" size="35" class="uploadfile" />
64
+ <?php _e( '<em>or you can choose directly a file from your host,', 'import-users-from-csv-with-meta' ) ?> <a href="#" class="toggle_upload_path"><?php _e( 'click here', 'import-users-from-csv-with-meta' ) ?></a>.</em>
65
+ </div>
66
+ <div id="introduce_path" style="display:none;">
67
+ <input placeholder="<?php _e( 'You have to introduce the path to file, i.e.:' ,'import-users-from-csv-with-meta' ); ?><?php $upload_dir = wp_upload_dir(); echo $upload_dir["path"]; ?>/test.csv" type="text" name="path_to_file" id="path_to_file" value="<?php echo dirname( __FILE__ ); ?>/test.csv" style="width:70%;" />
68
+ <em><?php _e( 'or you can upload it directly from your PC', 'import-users-from-csv-with-meta' ); ?>, <a href="#" class="toggle_upload_path"><?php _e( 'click here', 'import-users-from-csv-with-meta' ); ?></a>.</em>
69
+ </div>
70
+ </td>
71
+ </tr>
72
+
73
+ <tr class="form-field">
74
+ <th scope="row"><label for="role"><?php _e( 'Default role', 'import-users-from-csv-with-meta' ); ?></label></th>
75
+ <td>
76
+ <?php
77
+ $list_roles = acui_get_editable_roles();
78
+
79
+ foreach ($list_roles as $key => $value) {
80
+ if( in_array( $key, $last_roles_used ) )
81
+ echo "<label style='margin-right:5px;'><input name='role[]' type='checkbox' checked='checked' value='$key'/>$value</label>";
82
+ else
83
+ echo "<label style='margin-right:5px;'><input name='role[]' type='checkbox' value='$key'/>$value</label>";
84
+ }
85
+ ?>
86
+
87
+ <p class="description"><?php _e( 'You can also import roles from a CSV column. Please read documentation tab to see how it can be done. If you choose more than one role, the roles would be assigned correctly but you should use some plugin like <a href="https://wordpress.org/plugins/user-role-editor/">User Role Editor</a> to manage them.', 'import-users-from-csv-with-meta' ); ?></p>
88
+ </td>
89
+ </tr>
90
+
91
+ <tr class="form-field form-required">
92
+ <th scope="row"><label><?php _e( 'What should the plugin do with empty cells?', 'import-users-from-csv-with-meta' ); ?></label></th>
93
+ <td>
94
+ <select name="empty_cell_action">
95
+ <option value="leave"><?php _e( 'Leave the old value for this metadata', 'import-users-from-csv-with-meta' ); ?></option>
96
+ <option value="delete"><?php _e( 'Delete the metadata', 'import-users-from-csv-with-meta' ); ?></option>
97
+ </select>
98
+ </td>
99
+ </tr>
100
+
101
+ <tr class="form-field">
102
+ <th scope="row"><label for="user_login"><?php _e( 'Send mail', 'import-users-from-csv-with-meta' ); ?></label></th>
103
+ <td>
104
+ <p>
105
+ <?php _e( 'Do you wish to send a mail with credentials and other data?', 'import-users-from-csv-with-meta' ); ?>
106
+ <input type="checkbox" name="sends_email" value="yes" <?php if( get_option( 'acui_manually_send_mail' ) ): ?> checked="checked" <?php endif; ?>>
107
+ </p>
108
+ <p>
109
+ <?php _e( 'Do you wish to send this mail also to users that are being updated? (not only to the one which are being created)', 'import-users-from-csv-with-meta' ); ?>
110
+ <input type="checkbox" name="send_email_updated" value="yes" <?php if( get_option( 'acui_manually_send_mail_updated' ) ): ?> checked="checked" <?php endif; ?>>
111
+ </p>
112
+ </td>
113
+ </tr>
114
+
115
+ </tbody>
116
+ </table>
117
+
118
+ <h2><?php _e( 'Update users', 'import-users-from-csv-with-meta'); ?></h2>
119
+
120
+ <table class="form-table">
121
+ <tbody>
122
+ <tr class="form-field form-required">
123
+ <th scope="row"><label><?php _e( 'Update existing users?', 'import-users-from-csv-with-meta' ); ?></label></th>
124
+ <td>
125
+ <select name="update_existing_users">
126
+ <option value="yes"><?php _e( 'Yes', 'import-users-from-csv-with-meta' ); ?></option>
127
+ <option value="no"><?php _e( 'No', 'import-users-from-csv-with-meta' ); ?></option>
128
+ </select>
129
+ </td>
130
+ </tr>
131
+
132
+ <tr class="form-field form-required">
133
+ <th scope="row"><label><?php _e( 'Update roles for existing users?', 'import-users-from-csv-with-meta' ); ?></label></th>
134
+ <td>
135
+ <select name="update_roles_existing_users">
136
+ <option value="no"><?php _e( 'No', 'import-users-from-csv-with-meta' ); ?></option>
137
+ <option value="yes"><?php _e( 'Yes, update and override existing roles', 'import-users-from-csv-with-meta' ); ?></option>
138
+ <option value="yes_no_override"><?php _e( 'Yes, add new roles and not override existing ones', 'import-users-from-csv-with-meta' ); ?></option>
139
+ </select>
140
+ </td>
141
+ </tr>
142
+ </tbody>
143
+ </table>
144
+
145
+ <h2><?php _e( 'Users not present in CSV file', 'import-users-from-csv-with-meta'); ?></h2>
146
+
147
+ <table class="form-table">
148
+ <tbody>
149
+
150
+ <tr class="form-field form-required">
151
+ <th scope="row"><label for="delete_users"><?php _e( 'Delete users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
152
+ <td>
153
+ <div style="float:left; margin-top: 10px;">
154
+ <input type="checkbox" name="delete_users" value="yes"/>
155
+ </div>
156
+ <div style="margin-left:25px;">
157
+ <select id="delete_users_assign_posts" name="delete_users_assign_posts">
158
+ <option value=''><?php _e( 'Delete posts of deleted users without assigning to any user', 'import-users-from-csv-with-meta' ); ?></option>
159
+ <?php
160
+ $blogusers = get_users( array( 'fields' => array( 'ID', 'display_name' ) ) );
161
+
162
+ foreach ( $blogusers as $bloguser ) {
163
+ echo "<option value='{$bloguser->ID}'>{$bloguser->display_name}</option>";
164
+ }
165
+ ?>
166
+ </select>
167
+ <p class="description"><?php _e( 'After delete users, we can choose if we want to assign their posts to another user. Please do not delete them or posts will be deleted.', 'import-users-from-csv-with-meta' ); ?></p>
168
+ </div>
169
+ </td>
170
+ </tr>
171
+
172
+ <tr class="form-field form-required">
173
+ <th scope="row"><label for="change_role_not_present"><?php _e( 'Change role of users that are not present in the CSV?', 'import-users-from-csv-with-meta' ); ?></label></th>
174
+ <td>
175
+ <div style="float:left; margin-top: 10px;">
176
+ <input type="checkbox" name="change_role_not_present" value="yes"/>
177
+ </div>
178
+ <div style="margin-left:25px;">
179
+ <select id="change_role_not_present_role" name="change_role_not_present_role">
180
+ <?php
181
+ $list_roles = acui_get_editable_roles();
182
+
183
+ foreach ($list_roles as $key => $value) {
184
+ echo "<option value='$key'>$value</option>";
185
+ }
186
+ ?>
187
+ </select>
188
+ <p class="description"><?php _e( 'After import users which is not present in the CSV and can be changed to a different role.', 'import-users-from-csv-with-meta' ); ?></p>
189
+ </div>
190
+ </td>
191
+ </tr>
192
+
193
+ </tbody>
194
+ </table>
195
+
196
+ <?php do_action( 'acui_tab_import_before_import_button' ); ?>
197
+
198
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
199
+
200
+ <input class="button-primary" type="submit" name="uploadfile" id="uploadfile_btn" value="<?php _e( 'Start importing', 'import-users-from-csv-with-meta' ); ?>"/>
201
+ </form>
202
+ </div>
203
+
204
+ <div class="sidebar">
205
+ <div class="sidebar_section become_patreon">
206
+ <a class="patreon" color="primary" type="button" name="become-a-patron" data-tag="become-patron-button" href="https://www.patreon.com/bePatron?c=1741454" role="button">
207
+ <div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
208
+ </a>
209
+ </div>
210
+
211
+ <div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
212
+ <a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank" rel="noopener">
213
+ <img src="<?php echo esc_url( plugins_url( 'assets/codection-inmotion.png', dirname( __FILE__ ) ) ); ?>"/>
214
+ </a>
215
+ </div>
216
+
217
+ <div class="sidebar_section" id="vote_us">
218
+ <h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
219
+ <ul>
220
+ <li><label><?php _e( 'If you like it', 'import-users-from-csv-with-meta'); ?>, <a href="https://wordpress.org/support/plugin/import-users-from-csv-with-meta/reviews/"><?php _e( 'Please vote and support us', 'import-users-from-csv-with-meta'); ?></a>.</label></li>
221
+ </ul>
222
+ </div>
223
+ <div class="sidebar_section">
224
+ <h3>Having Issues?</h3>
225
+ <ul>
226
+ <li><label>You can create a ticket</label> <a target="_blank" href="http://wordpress.org/support/plugin/import-users-from-csv-with-meta"><label>WordPress support forum</label></a></li>
227
+ <li><label>You can ask for premium support</label> <a target="_blank" href="mailto:contacto@codection.com"><label>contacto@codection.com</label></a></li>
228
+ </ul>
229
+ </div>
230
+ <div class="sidebar_section">
231
+ <h3>Donate</h3>
232
+ <ul>
233
+ <li><label>If you appreciate our work and you want to help us to continue developing it and giving the best support</label> <a target="_blank" href="https://paypal.me/imalrod"><label>donate</label></a></li>
234
+ </ul>
235
+ </div>
236
+ </div>
237
+
238
+ </div>
239
+ <script type="text/javascript">
240
+ function check(){
241
+ if(document.getElementById("uploadfile").value == "" && jQuery( "#upload_file" ).is(":visible") ) {
242
+ alert("<?php _e( 'Please choose a file', 'import-users-from-csv-with-meta' ); ?>");
243
+ return false;
244
+ }
245
+
246
+ if( jQuery( "#path_to_file" ).val() == "" && jQuery( "#introduce_path" ).is(":visible") ) {
247
+ alert("<?php _e( 'Please enter a path to the file', 'import-users-from-csv-with-meta' ); ?>");
248
+ return false;
249
+ }
250
+ }
251
+
252
+ jQuery( document ).ready( function( $ ){
253
+ $( ".delete_attachment" ).click( function(){
254
+ var answer = confirm( "<?php _e( 'Are you sure to delete this file?', 'import-users-from-csv-with-meta' ); ?>" );
255
+ if( answer ){
256
+ var data = {
257
+ 'action': 'acui_delete_attachment',
258
+ 'attach_id': $( this ).attr( "attach_id" ),
259
+ 'security': '<?php echo wp_create_nonce( "codection-security" ); ?>'
260
+ };
261
+
262
+ $.post(ajaxurl, data, function(response) {
263
+ if( response != 1 )
264
+ alert( response );
265
+ else{
266
+ alert( "<?php _e( 'File successfully deleted', 'import-users-from-csv-with-meta' ); ?>" );
267
+ document.location.reload();
268
+ }
269
+ });
270
+ }
271
+ });
272
+
273
+ $( "#bulk_delete_attachment" ).click( function(){
274
+ var answer = confirm( "<?php _e( 'Are you sure to delete ALL CSV files uploaded? There can be CSV files from other plugins.', 'import-users-from-csv-with-meta' ); ?>" );
275
+ if( answer ){
276
+ var data = {
277
+ 'action': 'acui_bulk_delete_attachment',
278
+ 'security': '<?php echo wp_create_nonce( "codection-security" ); ?>'
279
+ };
280
+
281
+ $.post(ajaxurl, data, function(response) {
282
+ if( response != 1 )
283
+ alert( "<?php _e( 'There were problems deleting the files, please check files permissions', 'import-users-from-csv-with-meta' ); ?>" );
284
+ else{
285
+ alert( "<?php _e( 'Files successfully deleted', 'import-users-from-csv-with-meta' ); ?>" );
286
+ document.location.reload();
287
+ }
288
+ });
289
+ }
290
+ });
291
+
292
+ $( ".toggle_upload_path" ).click( function( e ){
293
+ e.preventDefault();
294
+
295
+ $("#upload_file,#introduce_path").toggle();
296
+ } );
297
+
298
+ $("#vote_us").click(function(){
299
+ var win=window.open("http://wordpress.org/support/view/plugin-reviews/import-users-from-csv-with-meta?free-counter?rate=5#postform", '_blank');
300
+ win.focus();
301
+ });
302
+
303
+ } );
304
+ </script>
305
+ <?php
306
+ }
307
+ }
trunk/classes/meta-keys.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ if ( ! class_exists( 'WP_List_Table' ) ) {
6
+ require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
7
+ }
8
+
9
+ class ACUI_MetaKeys{
10
+ public static function admin_gui(){
11
+ $customers_obj = new Customers_List();
12
+ ?>
13
+ <style type="text/css">
14
+ .tablenav.top{
15
+ display: none;
16
+ }
17
+ </style>
18
+ <h3><?php _e( 'Meta keys used in your database for users', 'import-users-from-csv-with-meta' ); ?></h3>
19
+ <div id="poststuff">
20
+ <div id="post-body" class="metabox-holder columns-2">
21
+ <div id="post-body-content">
22
+ <div class="meta-box-sortables ui-sortable">
23
+ <form method="post">
24
+ <?php
25
+ $customers_obj->prepare_items();
26
+ $customers_obj->display(); ?>
27
+ </form>
28
+ </div>
29
+ </div>
30
+ </div>
31
+ <br class="clear">
32
+ </div>
33
+ <?php
34
+ }
35
+ }
36
+
37
+ class Customers_List extends WP_List_Table {
38
+ public function __construct() {
39
+ parent::__construct( [
40
+ 'singular' => 'Meta key',
41
+ 'plural' => 'Meta keys',
42
+ 'ajax' => false,
43
+ ] );
44
+ }
45
+
46
+ function get_columns() {
47
+ $columns = [
48
+ 'meta_key' => 'Meta key',
49
+ 'type' => 'Type',
50
+ 'example' => 'Example'
51
+ ];
52
+
53
+ return $columns;
54
+ }
55
+
56
+ public static function get_meta_keys() {
57
+ global $wpdb;
58
+
59
+ $meta_keys = array();
60
+
61
+ $select = "SELECT distinct $wpdb->usermeta.meta_key FROM $wpdb->usermeta ORDER BY $wpdb->usermeta.meta_key";
62
+ $usermeta = $wpdb->get_results( $select, ARRAY_A );
63
+
64
+ foreach ($usermeta as $key => $value) {
65
+ $meta_key = array();
66
+ $meta_key['meta_key'] = $value["meta_key"];
67
+ $meta_key['type'] = "";
68
+ $meta_key['example'] = "";
69
+
70
+ $meta_keys[] = $meta_key;
71
+ }
72
+
73
+ return $meta_keys;
74
+ }
75
+
76
+ public static function record_count() {
77
+ global $wpdb;
78
+
79
+ $select = "SELECT distinct $wpdb->usermeta.meta_key FROM $wpdb->usermeta";
80
+ $usermeta = $wpdb->get_results( $select );
81
+
82
+ return count( $usermeta );
83
+ }
84
+
85
+ public function no_items() {
86
+ _e( 'No meta keys availale.', 'sp' );
87
+ }
88
+
89
+ public function column_default( $item, $column_name ) {
90
+ switch ( $column_name ) {
91
+ case 'meta_key':
92
+ return $item['meta_key'];
93
+
94
+ case 'type':
95
+ return $this->get_type( $item['meta_key'] );
96
+
97
+ case 'example':
98
+ return $this->get_example( $item['meta_key'] );
99
+ }
100
+ }
101
+
102
+ public function get_example( $meta_key ){
103
+ global $wpdb;
104
+ $select = $wpdb->prepare( "SELECT $wpdb->usermeta.meta_value FROM $wpdb->usermeta WHERE meta_key = %s AND meta_value IS NOT NULL AND meta_value <> '' LIMIT 1", $meta_key );
105
+ $usermeta = $wpdb->get_results( $select, ARRAY_A);
106
+
107
+ $usermeta = reset( $usermeta );
108
+
109
+ return $usermeta['meta_value'];
110
+ }
111
+
112
+ public function get_type( $meta_key ){
113
+ return is_serialized( $this->get_example( $meta_key ) ) ? 'Serialized' : 'Non serialized';
114
+ }
115
+
116
+ function column_name( $item ) {
117
+ return '<strong>' . $item['name'] . '</strong>';
118
+ }
119
+
120
+ public function prepare_items() {
121
+ $columns = $this->get_columns();
122
+ $this->_column_headers = array( $columns, array(), array() );
123
+
124
+ $this->items = self::get_meta_keys();
125
+ }
126
+ }
trunk/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>&nbsp;<?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
+ }
trunk/csv_example.png ADDED
Binary file
trunk/icon_coffee.png ADDED
Binary file
trunk/import-users-from-csv-with-meta.php ADDED
@@ -0,0 +1,758 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
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.15.1.2
7
+ Author: codection
8
+ Author URI: https://codection.com
9
+ License: GPL2
10
+ 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
+ if ( ! defined( 'ABSPATH' ) )
15
+ exit;
16
+
17
+ $wp_users_fields = array( "id", "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered", "password", "user_pass", "locale", "show_admin_bar_front", "user_login" );
18
+ $wp_min_fields = array("Username", "Email");
19
+ $acui_fields = array( "bp_group", "bp_group_role", "role" );
20
+ $acui_restricted_fields = array_merge( $wp_users_fields, $wp_min_fields, $acui_fields );
21
+
22
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
23
+
24
+ require_once( "classes/email-templates.php" );
25
+ require_once( "classes/homepage.php" );
26
+ require_once( "classes/export.php" );
27
+ require_once( "classes/columns.php" );
28
+ require_once( "classes/meta-keys.php" );
29
+ require_once( "classes/frontend.php" );
30
+ require_once( "classes/doc.php" );
31
+ require_once( "classes/email-options.php" );
32
+ require_once( "classes/cron.php" );
33
+ require_once( "classes/donate.php" );
34
+ require_once( "classes/help.php" );
35
+ require_once( "classes/new_features.php" );
36
+
37
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
38
+ if ( defined( 'BP_VERSION' ) )
39
+ acui_loader();
40
+ else
41
+ add_action( 'bp_init', 'acui_loader' );
42
+ }
43
+ else
44
+ acui_loader();
45
+
46
+ function acui_loader(){
47
+ register_activation_hook( __FILE__,'acui_init' );
48
+ register_deactivation_hook( __FILE__, 'acui_deactivate' );
49
+ add_action( "plugins_loaded", "acui_init" );
50
+ add_action( "admin_menu", "acui_menu" );
51
+ add_action( 'admin_enqueue_scripts', 'acui_admin_enqueue_scripts' );
52
+ add_filter( 'plugin_row_meta', 'acui_plugin_row_meta', 10, 2 );
53
+ add_action( 'admin_init', 'acui_modify_user_edit_admin' );
54
+ add_action( 'wp_ajax_acui_delete_attachment', 'acui_delete_attachment' );
55
+ add_action( 'wp_ajax_acui_bulk_delete_attachment', 'acui_bulk_delete_attachment' );
56
+ add_action( 'acui_cron_process', 'acui_cron_process', 10 );
57
+ add_filter( 'wp_check_filetype_and_ext', 'acui_wp_check_filetype_and_ext', PHP_INT_MAX, 4 );
58
+
59
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) && file_exists( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' ) ){
60
+ require_once( plugin_dir_path( __DIR__ ) . 'buddypress/bp-xprofile/classes/class-bp-xprofile-group.php' );
61
+ }
62
+
63
+ if( get_option( 'acui_show_profile_fields' ) == true ){
64
+ add_action( "show_user_profile", "acui_extra_user_profile_fields" );
65
+ add_action( "edit_user_profile", "acui_extra_user_profile_fields" );
66
+ add_action( "personal_options_update", "acui_save_extra_user_profile_fields" );
67
+ add_action( "edit_user_profile_update", "acui_save_extra_user_profile_fields" );
68
+ }
69
+
70
+ // includes
71
+ foreach ( glob( plugin_dir_path( __FILE__ ) . "include/*.php" ) as $file ) {
72
+ include_once( $file );
73
+ }
74
+
75
+ // addons
76
+ foreach ( glob( plugin_dir_path( __FILE__ ) . "addons/*.php" ) as $file ) {
77
+ include_once( $file );
78
+ }
79
+
80
+ require_once( "importer.php" );
81
+ }
82
+
83
+ function acui_init(){
84
+ load_plugin_textdomain( 'import-users-from-csv-with-meta', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
85
+ acui_activate();
86
+ }
87
+
88
+ function acui_get_default_options_list(){
89
+ return array(
90
+ 'acui_columns' => array(),
91
+ // emails
92
+ 'acui_mail_subject' => __('Welcome to', 'import-users-from-csv-with-meta') . ' ' . get_bloginfo("name"),
93
+ 'acui_mail_body' => __('Welcome,', 'import-users-from-csv-with-meta') . '<br/>' . __('Your data to login in this site is:', 'import-users-from-csv-with-meta') . '<br/><ul><li>' . __('URL to login', 'import-users-from-csv-with-meta') . ': **loginurl**</li><li>' . __( 'Username', 'import-users-from-csv-with-meta') . '= **username**</li><li>Password = **password**</li></ul>',
94
+ 'acui_mail_template_id' => 0,
95
+ 'acui_mail_attachment_id' => 0,
96
+ 'acui_enable_email_templates' => false,
97
+ // cron
98
+ 'acui_cron_activated' => false,
99
+ 'acui_cron_send_mail' => false,
100
+ 'acui_cron_send_mail_updated' => false,
101
+ 'acui_cron_delete_users' => false,
102
+ 'acui_cron_delete_users_assign_posts' => 0,
103
+ 'acui_cron_change_role_not_present' => false,
104
+ 'acui_cron_change_role_not_present_role' => 0,
105
+ 'acui_cron_path_to_file' => '',
106
+ 'acui_cron_path_to_move' => '',
107
+ 'acui_cron_path_to_move_auto_rename' => false,
108
+ 'acui_cron_period' => '',
109
+ 'acui_cron_role' => '',
110
+ 'acui_cron_update_roles_existing_users' => '',
111
+ 'acui_cron_log' => '',
112
+ 'acui_cron_allow_multiple_accounts' => 'not_allowed',
113
+ // frontend
114
+ 'acui_frontend_send_mail'=> false,
115
+ 'acui_frontend_send_mail_updated' => false,
116
+ 'acui_frontend_delete_users' => false,
117
+ 'acui_frontend_delete_users_assign_posts' => 0,
118
+ 'acui_frontend_change_role_not_present' => false,
119
+ 'acui_frontend_change_role_not_present_role' => 0,
120
+ 'acui_frontend_role' => '',
121
+ // others
122
+ 'acui_manually_send_mail' => false,
123
+ 'acui_manually_send_mail_updated' => false,
124
+ 'acui_automatic_wordpress_email' => false,
125
+ 'acui_show_profile_fields' => false
126
+ );
127
+ }
128
+
129
+ function acui_activate(){
130
+ $acui_default_options_list = acui_get_default_options_list();
131
+
132
+ foreach ( $acui_default_options_list as $key => $value) {
133
+ add_option( $key, $value );
134
+ }
135
+ }
136
+
137
+ function acui_deactivate(){
138
+ wp_clear_scheduled_hook( 'acui_cron' );
139
+ }
140
+
141
+ function acui_admin_enqueue_scripts() {
142
+ wp_enqueue_style( 'acui_css', plugins_url( 'assets/style.css', __FILE__ ), false, '1.0.0' );
143
+ }
144
+
145
+ function acui_delete_options(){
146
+ $acui_smtp_options = array (
147
+ 'acui_settings' => 'wordpress',
148
+ 'acui_mail_from' => '',
149
+ 'acui_mail_from_name' => '',
150
+ 'acui_mailer' => 'smtp',
151
+ 'acui_mail_set_return_path' => 'false',
152
+ 'acui_smtp_host' => 'localhost',
153
+ 'acui_smtp_port' => '25',
154
+ 'acui_smtp_ssl' => 'none',
155
+ 'acui_smtp_auth' => false,
156
+ 'acui_smtp_user' => '',
157
+ 'acui_smtp_pass' => ''
158
+ );
159
+
160
+ $acui_default_options_list = array_merge( acui_get_default_options_list(), $acui_smtp_options );
161
+
162
+ foreach ( $acui_default_options_list as $key => $value) {
163
+ delete_option( $key );
164
+ }
165
+ }
166
+
167
+ function acui_get_restricted_fields(){
168
+ global $acui_restricted_fields;
169
+ return apply_filters( 'acui_restricted_fields', $acui_restricted_fields );
170
+ }
171
+
172
+ function acui_menu() {
173
+ add_submenu_page( 'tools.php', __( 'Insert users massively (CSV)', 'import-users-from-csv-with-meta' ), __( 'Import users from CSV', 'import-users-from-csv-with-meta' ), 'create_users', 'acui', 'acui_options' );
174
+ }
175
+
176
+ function acui_plugin_row_meta( $links, $file ){
177
+ if ( strpos( $file, basename( __FILE__ ) ) !== false ) {
178
+ $new_links = array(
179
+ '<a href="https://www.paypal.me/imalrod" target="_blank">' . __( 'Donate', 'import-users-from-csv-with-meta' ) . '</a>',
180
+ '<a href="mailto:contacto@codection.com" target="_blank">' . __( 'Premium support', 'import-users-from-csv-with-meta' ) . '</a>',
181
+ '<a href="http://codection.com/tienda" target="_blank">' . __( 'Premium plugins', 'import-users-from-csv-with-meta' ) . '</a>',
182
+ );
183
+
184
+ $links = array_merge( $links, $new_links );
185
+ }
186
+
187
+ return $links;
188
+ }
189
+
190
+ function acui_detect_delimiter( $file ) {
191
+ $delimiters = array(
192
+ ';' => 0,
193
+ ',' => 0,
194
+ "\t" => 0,
195
+ "|" => 0
196
+ );
197
+
198
+ $handle = @fopen($file, "r");
199
+ $firstLine = fgets($handle);
200
+ fclose($handle);
201
+ foreach ($delimiters as $delimiter => &$count) {
202
+ $count = count(str_getcsv($firstLine, $delimiter));
203
+ }
204
+
205
+ return array_search(max($delimiters), $delimiters);
206
+ }
207
+
208
+ function acui_string_conversion( $string ){
209
+ if(!preg_match('%(?:
210
+ [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
211
+ |\xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
212
+ |[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
213
+ |\xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
214
+ |\xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
215
+ |[\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
216
+ |\xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
217
+ )+%xs', $string)){
218
+ return utf8_encode($string);
219
+ }
220
+ else
221
+ return $string;
222
+ }
223
+
224
+ function acui_mail_from(){
225
+ return get_option( "acui_mail_from" );
226
+ }
227
+
228
+ function acui_mail_from_name(){
229
+ return get_option( "acui_mail_from_name" );
230
+ }
231
+
232
+ function acui_user_id_exists( $user_id ){
233
+ if ( get_userdata( $user_id ) === false )
234
+ return false;
235
+ else
236
+ return true;
237
+ }
238
+
239
+ function acui_get_roles($user_id){
240
+ $roles = array();
241
+ $user = new WP_User( $user_id );
242
+
243
+ if ( !empty( $user->roles ) && is_array( $user->roles ) ) {
244
+ foreach ( $user->roles as $role )
245
+ $roles[] = $role;
246
+ }
247
+
248
+ return $roles;
249
+ }
250
+
251
+ function acui_get_editable_roles() {
252
+ global $wp_roles;
253
+
254
+ $all_roles = $wp_roles->roles;
255
+ $editable_roles = apply_filters('editable_roles', $all_roles);
256
+ $list_editable_roles = array();
257
+
258
+ foreach ($editable_roles as $key => $editable_role)
259
+ $list_editable_roles[$key] = $editable_role["name"];
260
+
261
+ return $list_editable_roles;
262
+ }
263
+
264
+ function acui_check_options(){
265
+ if( get_option( "acui_mail_body" ) == "" )
266
+ update_option( "acui_mail_body", __( 'Welcome,', 'import-users-from-csv-with-meta' ) . '<br/>' . __( 'Your data to login in this site is:', 'import-users-from-csv-with-meta' ) . '<br/><ul><li>' . __( 'URL to login', 'import-users-from-csv-with-meta' ) . ': **loginurl**</li><li>' . __( 'Username', 'import-users-from-csv-with-meta' ) . ' = **username**</li><li>' . __( 'Password', 'import-users-from-csv-with-meta' ) . ' = **password**</li></ul>' );
267
+
268
+ if( get_option( "acui_mail_subject" ) == "" )
269
+ update_option( "acui_mail_subject", __('Welcome to','import-users-from-csv-with-meta') . ' ' . get_bloginfo("name") );
270
+ }
271
+
272
+ function acui_admin_tabs( $current = 'homepage' ) {
273
+ $tabs = array(
274
+ 'homepage' => __( 'Import', 'import-users-from-csv-with-meta' ),
275
+ 'export' => __( 'Export', 'import-users-from-csv-with-meta' ),
276
+ 'frontend' => __( 'Frontend', 'import-users-from-csv-with-meta' ),
277
+ 'cron' => __( 'Cron import', 'import-users-from-csv-with-meta' ),
278
+ 'columns' => __( 'Extra profile fields', 'import-users-from-csv-with-meta' ),
279
+ 'meta-keys' => __( 'Meta keys', 'import-users-from-csv-with-meta' ),
280
+ 'mail-options' => __( 'Mail options', 'import-users-from-csv-with-meta' ),
281
+ 'doc' => __( 'Documentation', 'import-users-from-csv-with-meta' ),
282
+ 'donate' => __( 'Donate/Patreon', 'import-users-from-csv-with-meta' ),
283
+ 'shop' => __( 'Shop', 'import-users-from-csv-with-meta' ),
284
+ 'help' => __( 'Hire an expert', 'import-users-from-csv-with-meta' ),
285
+ 'new_features' => __( 'New features', 'import-users-from-csv-with-meta' )
286
+ );
287
+
288
+ $tabs = apply_filters( 'acui_tabs', $tabs );
289
+
290
+ echo '<div id="icon-themes" class="icon32"><br></div>';
291
+ echo '<h2 class="nav-tab-wrapper">';
292
+ foreach( $tabs as $tab => $name ){
293
+ $class = ( $tab == $current ) ? ' nav-tab-active' : '';
294
+
295
+ if( $tab == "shop" ){
296
+ $href = "https://codection.com/tienda/";
297
+ $target = "_blank";
298
+ }
299
+ else{
300
+ $href = "?page=acui&tab=$tab";
301
+ $target = "_self";
302
+ }
303
+
304
+ echo "<a class='nav-tab$class' href='$href' target='$target'>$name</a>";
305
+
306
+ }
307
+ echo '</h2>';
308
+ }
309
+
310
+ function acui_fileupload_process( $form_data, $is_cron = false, $is_frontend = false ) {
311
+ if ( !defined( 'DOING_CRON' ) && ( !isset( $form_data['security'] ) || !wp_verify_nonce( $form_data['security'], 'codection-security' ) ) ){
312
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
313
+ }
314
+
315
+ if( empty( $_FILES['uploadfile']['name'] ) || ( isset( $form_data['is_frontend'] ) && $form_data['is_frontend'] ) ):
316
+ $path_to_file = wp_normalize_path( $form_data["path_to_file"] );
317
+
318
+ if( validate_file( $path_to_file ) !== 0 ){
319
+ wp_die( __( 'Error, path to file is not well written', 'import-users-from-csv-with-meta' ) . ": $path_to_file" );
320
+ }
321
+
322
+ if( !file_exists ( $path_to_file ) ){
323
+ wp_die( __( 'Error, we cannot find the file', 'import-users-from-csv-with-meta' ) . ": $path_to_file" );
324
+ }
325
+
326
+ acui_import_users( $path_to_file, $form_data, 0, $is_cron, $is_frontend );
327
+ else:
328
+ $uploadfile = wp_handle_upload( $_FILES['uploadfile'], array( 'test_form' => false, 'mimes' => array('csv' => 'text/csv') ) );
329
+
330
+ if ( !$uploadfile || isset( $uploadfile['error'] ) ) {
331
+ wp_die( __( 'Problem uploading file to import' . var_export( $uploadfile['error'], true ), 'import-users-from-csv-with-meta' ));
332
+ } else {
333
+ acui_import_users( $uploadfile['file'], $form_data, acui_get_attachment_id_by_url( $uploadfile['url'] ), $is_cron, $is_frontend );
334
+ }
335
+ endif;
336
+ }
337
+
338
+ function acui_manage_frontend_process( $form_data ){
339
+ if ( !isset( $form_data['security'] ) || !wp_verify_nonce( $form_data['security'], 'codection-security' ) ) {
340
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
341
+ }
342
+
343
+ update_option( "acui_frontend_send_mail", isset( $form_data["send-mail-frontend"] ) && $form_data["send-mail-frontend"] == "yes" );
344
+ update_option( "acui_frontend_send_mail_updated", isset( $form_data["send-mail-updated-frontend"] ) && $form_data["send-mail-updated-frontend"] == "yes" );
345
+ update_option( "acui_frontend_delete_users", isset( $form_data["delete-users-frontend"] ) && $form_data["delete-users-frontend"] == "yes" );
346
+ update_option( "acui_frontend_delete_users_assign_posts", sanitize_text_field( $form_data["delete-users-assign-posts-frontend"] ) );
347
+ update_option( "acui_frontend_change_role_not_present", isset( $form_data["change-role-not-present-frontend"] ) && $form_data["change-role-not-present-frontend"] == "yes" );
348
+ update_option( "acui_frontend_change_role_not_present_role", sanitize_text_field( $form_data["change-role-not-present-role-frontend"] ) );
349
+
350
+ if( isset( $form_data["activate-users-wp-members-frontend"] ) )
351
+ update_option( "acui_frontend_activate_users_wp_members", sanitize_text_field( $form_data["activate-users-wp-members-frontend"] ) );
352
+ else
353
+ update_option( "acui_frontend_activate_users_wp_members", 'no_activate' );
354
+
355
+ update_option( "acui_frontend_role", sanitize_text_field( $form_data["role-frontend"] ) );
356
+ ?>
357
+ <div class="updated">
358
+ <p><?php _e( 'Settings updated correctly', 'import-users-from-csv-with-meta' ) ?></p>
359
+ </div>
360
+ <?php
361
+ }
362
+
363
+ function acui_manage_extra_profile_fields( $form_data ){
364
+ if ( !isset( $form_data['security'] ) || !wp_verify_nonce( $form_data['security'], 'codection-security' ) ) {
365
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
366
+ }
367
+
368
+ update_option( "acui_show_profile_fields", isset( $form_data["show-profile-fields"] ) && $form_data["show-profile-fields"] == "yes" );
369
+ }
370
+
371
+ function acui_save_mail_template( $form_data ){
372
+ if ( !isset( $form_data['security'] ) || !wp_verify_nonce( $form_data['security'], 'codection-security' ) ) {
373
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
374
+ }
375
+
376
+ $automatic_wordpress_email = sanitize_text_field( $form_data["automatic_wordpress_email"] );
377
+ $subject_mail = sanitize_text_field( $form_data["subject_mail"] );
378
+ $body_mail = wp_kses_post( stripslashes( $form_data["body_mail"] ) );
379
+ $template_id = intval( $form_data["template_id"] );
380
+ $email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
381
+
382
+ update_option( "acui_automatic_wordpress_email", $automatic_wordpress_email );
383
+ update_option( "acui_mail_subject", $subject_mail );
384
+ update_option( "acui_mail_body", $body_mail );
385
+ update_option( "acui_mail_template_id", $template_id );
386
+ update_option( "acui_mail_attachment_id", $email_template_attachment_id );
387
+
388
+ $template_id = absint( $form_data["template_id"] );
389
+
390
+ if( !empty( $template_id ) ){
391
+ wp_update_post( array(
392
+ 'ID' => $template_id,
393
+ 'post_title' => $subject_mail,
394
+ 'post_content' => $body_mail,
395
+ ) );
396
+
397
+ update_post_meta( $template_id, 'email_template_attachment_id', $email_template_attachment_id );
398
+ }
399
+ ?>
400
+ <div class="updated">
401
+ <p><?php _e( 'Mail template updated correctly', 'import-users-from-csv-with-meta' )?></p>
402
+ </div>
403
+ <?php
404
+ }
405
+
406
+ function acui_manage_cron_process( $form_data ){
407
+ if ( !isset( $form_data['security'] ) || !wp_verify_nonce( $form_data['security'], 'codection-security' ) ) {
408
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
409
+ }
410
+
411
+ $next_timestamp = wp_next_scheduled( 'acui_cron_process' );
412
+ $period = sanitize_text_field( $form_data[ "period" ] );
413
+
414
+ if( isset( $form_data["cron-activated"] ) && $form_data["cron-activated"] == "yes" ){
415
+ update_option( "acui_cron_activated", true );
416
+
417
+ $old_period = get_option( "acui_cron_period" );
418
+
419
+ if( $old_period != $period ){
420
+ wp_unschedule_event( $next_timestamp, 'acui_cron_process');
421
+ wp_schedule_event( time(), $period, 'acui_cron_process' );
422
+ }
423
+ elseif( !$next_timestamp ) {
424
+ wp_schedule_event( time(), $period, 'acui_cron_process' );
425
+ }
426
+ }
427
+ else{
428
+ update_option( "acui_cron_activated", false );
429
+ wp_unschedule_event( $next_timestamp, 'acui_cron_process');
430
+ }
431
+
432
+ update_option( "acui_cron_send_mail", isset( $form_data["send-mail-cron"] ) && $form_data["send-mail-cron"] == "yes" );
433
+ update_option( "acui_cron_send_mail_updated", isset( $form_data["send-mail-updated"] ) && $form_data["send-mail-updated"] == "yes" );
434
+ update_option( "acui_cron_delete_users", isset( $form_data["cron-delete-users"] ) && $form_data["cron-delete-users"] == "yes" );
435
+ update_option( "acui_cron_delete_users_assign_posts", sanitize_text_field( $form_data["cron-delete-users-assign-posts"] ) );
436
+ update_option( "acui_move_file_cron", isset( $form_data["move-file-cron"] ) && $form_data["move-file-cron"] == "yes" );
437
+ update_option( "acui_cron_path_to_move_auto_rename", isset( $form_data["path_to_move_auto_rename"] ) && $form_data["path_to_move_auto_rename"] == "yes" );
438
+ update_option( "acui_cron_allow_multiple_accounts", ( isset( $form_data["allow_multiple_accounts"] ) && $form_data["allow_multiple_accounts"] == "yes" ) ? "allowed" : "not_allowed" );
439
+ update_option( "acui_cron_path_to_file", sanitize_text_field( $form_data["path_to_file"] ) );
440
+ update_option( "acui_cron_path_to_move", sanitize_text_field( $form_data["path_to_move"] ) );
441
+ update_option( "acui_cron_period", sanitize_text_field( $form_data["period"] ) );
442
+ update_option( "acui_cron_role", sanitize_text_field( $form_data["role"] ) );
443
+ update_option( "acui_cron_update_roles_existing_users", isset( $form_data["update-roles-existing-users"] ) && $form_data["update-roles-existing-users"] == "yes" );
444
+ update_option( "acui_cron_change_role_not_present", isset( $form_data["cron-change-role-not-present"] ) && $form_data["cron-change-role-not-present"] == "yes" );
445
+ update_option( "acui_cron_change_role_not_present_role", sanitize_text_field( $form_data["cron-change-role-not-present-role"] ) );
446
+ ?>
447
+ <div class="updated">
448
+ <p><?php _e( 'Settings updated correctly', 'import-users-from-csv-with-meta' ) ?></p>
449
+ </div>
450
+ <?php
451
+ }
452
+
453
+ function acui_cron_process(){
454
+ $message = __('Import cron task starts at', 'import-users-from-csv-with-meta' ) . ' ' . date("Y-m-d H:i:s") . '<br/>';
455
+
456
+ $form_data = array();
457
+ $form_data[ "path_to_file" ] = get_option( "acui_cron_path_to_file");
458
+ $form_data[ "role" ] = get_option( "acui_cron_role");
459
+ $form_data[ "update_roles_existing_users" ] = ( get_option( "acui_cron_update_roles_existing_users" ) ) ? 'yes' : 'no';
460
+ $form_data[ "empty_cell_action" ] = "leave";
461
+ $form_data[ "security" ] = wp_create_nonce( "codection-security" );
462
+
463
+ ob_start();
464
+ acui_fileupload_process( $form_data, true );
465
+ $message .= "<br/>" . ob_get_contents() . "<br/>";
466
+ ob_end_clean();
467
+
468
+ $move_file_cron = get_option( "acui_move_file_cron");
469
+
470
+ if( $move_file_cron ){
471
+ $path_to_file = get_option( "acui_cron_path_to_file");
472
+ $path_to_move = get_option( "acui_cron_path_to_move");
473
+
474
+ rename( $path_to_file, $path_to_move );
475
+
476
+ acui_cron_process_auto_rename(); // optionally rename with date and time included
477
+ }
478
+ $message .= __( '--Finished at', 'import-users-from-csv-with-meta' ) . ' ' . date("Y-m-d H:i:s") . '<br/><br/>';
479
+
480
+ update_option( "acui_cron_log", $message );
481
+ }
482
+
483
+ function acui_cron_process_auto_rename () {
484
+ if( get_option( "acui_cron_path_to_move_auto_rename" ) != true )
485
+ return;
486
+
487
+ $movefile = get_option( "acui_cron_path_to_move");
488
+ if ($movefile && file_exists($movefile)) {
489
+ $parts = pathinfo($movefile);
490
+ $filename = $parts['filename'];
491
+ if ($filename){
492
+ $date = date('YmdHis');
493
+ $newfile = $parts['dirname'] . '/' . $filename .'_' . $date . '.' . $parts['extension'];
494
+ rename($movefile , $newfile);
495
+ }
496
+ }
497
+ }
498
+
499
+ function acui_extra_user_profile_fields( $user ) {
500
+ $acui_restricted_fields = acui_get_restricted_fields();
501
+ $headers = get_option("acui_columns");
502
+ if( is_array( $headers ) && !empty( $headers ) ):
503
+ ?>
504
+ <h3>Extra profile information</h3>
505
+
506
+ <table class="form-table"><?php
507
+
508
+ foreach ( $headers as $column ):
509
+ if( in_array( $column, $acui_restricted_fields ) )
510
+ continue;
511
+ ?>
512
+ <tr>
513
+ <th><label for="<?php echo $column; ?>"><?php echo $column; ?></label></th>
514
+ <td><input type="text" name="<?php echo $column; ?>" id="<?php echo $column; ?>" value="<?php echo esc_attr(get_the_author_meta($column, $user->ID )); ?>" class="regular-text" /></td>
515
+ </tr>
516
+ <?php
517
+ endforeach;
518
+ ?>
519
+ </table><?php
520
+ endif;
521
+ }
522
+
523
+ function acui_save_extra_user_profile_fields( $user_id ){
524
+ $headers = get_option("acui_columns");
525
+ $acui_restricted_fields = acui_get_restricted_fields();
526
+
527
+ $post_filtered = filter_input_array( INPUT_POST );
528
+
529
+ if( is_array( $headers ) && count( $headers ) > 0 ):
530
+ foreach ( $headers as $column ){
531
+ if( in_array( $column, $acui_restricted_fields ) )
532
+ continue;
533
+
534
+ $column_sanitized = str_replace(" ", "_", $column);
535
+ update_user_meta( $user_id, $column, $post_filtered[$column_sanitized] );
536
+ }
537
+ endif;
538
+ }
539
+
540
+ function acui_modify_user_edit_admin(){
541
+ global $pagenow;
542
+
543
+ if(in_array($pagenow, array("user-edit.php", "profile.php"))){
544
+ $acui_columns = get_option("acui_columns");
545
+
546
+ if(is_array($acui_columns) && !empty($acui_columns)){
547
+ $new_columns = array();
548
+ $core_fields = array(
549
+ 'username',
550
+ 'user_email',
551
+ 'first_name',
552
+ 'role',
553
+ 'last_name',
554
+ 'nickname',
555
+ 'display_name',
556
+ 'description',
557
+ 'billing_first_name',
558
+ 'billing_last_name',
559
+ 'billing_company',
560
+ 'billing_address_1',
561
+ 'billing_address_2',
562
+ 'billing_city',
563
+ 'billing_postcode',
564
+ 'billing_country',
565
+ 'billing_state',
566
+ 'billing_phone',
567
+ 'billing_email',
568
+ 'shipping_first_name',
569
+ 'shipping_last_name',
570
+ 'shipping_company',
571
+ 'shipping_address_1',
572
+ 'shipping_address_2',
573
+ 'shipping_city',
574
+ 'shipping_postcode',
575
+ 'shipping_country',
576
+ 'shipping_state'
577
+ );
578
+
579
+ foreach ($acui_columns as $key => $column) {
580
+
581
+ if(in_array($column, $core_fields)) {
582
+ // error_log('removing column because core '.$column);
583
+ continue;
584
+ }
585
+ if(in_array($column, $new_columns)) {
586
+ // error_log('removing column because not unique '.$column);
587
+ continue;
588
+ }
589
+
590
+ array_push($new_columns, $column);
591
+ }
592
+
593
+ update_option("acui_columns", $new_columns);
594
+ }
595
+ }
596
+ }
597
+
598
+ function acui_delete_attachment() {
599
+ check_ajax_referer( 'codection-security', 'security' );
600
+
601
+ if( ! current_user_can( 'manage_options' ) )
602
+ wp_die( __('You are not an adminstrator', 'import-users-from-csv-with-meta' ) );
603
+
604
+ $attach_id = absint( $_POST['attach_id'] );
605
+ $mime_type = (string) get_post_mime_type( $attach_id );
606
+
607
+ if( $mime_type != 'text/csv' )
608
+ _e('This plugin only can delete the type of file it manages, CSV files.', 'import-users-from-csv-with-meta' );
609
+
610
+ $result = wp_delete_attachment( $attach_id, true );
611
+
612
+ if( $result === false )
613
+ _e( 'There were problems deleting the file, please check file permissions', 'import-users-from-csv-with-meta' );
614
+ else
615
+ echo 1;
616
+
617
+ wp_die();
618
+ }
619
+
620
+ function acui_bulk_delete_attachment(){
621
+ check_ajax_referer( 'codection-security', 'security' );
622
+
623
+ if( ! current_user_can( 'manage_options' ) )
624
+ wp_die( __('You are not an adminstrator', 'import-users-from-csv-with-meta' ) );
625
+
626
+ $args_old_csv = array( 'post_type'=> 'attachment', 'post_mime_type' => 'text/csv', 'post_status' => 'inherit', 'posts_per_page' => -1 );
627
+ $old_csv_files = new WP_Query( $args_old_csv );
628
+ $result = 1;
629
+
630
+ while($old_csv_files->have_posts()) :
631
+ $old_csv_files->the_post();
632
+
633
+ $mime_type = (string) get_post_mime_type( get_the_ID() );
634
+ if( $mime_type != 'text/csv' )
635
+ wp_die( __('This plugin only can delete the type of file it manages, CSV files.', 'import-users-from-csv-with-meta' ) );
636
+
637
+ if( wp_delete_attachment( get_the_ID(), true ) === false )
638
+ $result = 0;
639
+ endwhile;
640
+
641
+ wp_reset_postdata();
642
+
643
+ echo $result;
644
+
645
+ wp_die();
646
+ }
647
+
648
+ // try to solve the CSV upload problem
649
+ function acui_wp_check_filetype_and_ext( $values, $file, $filename, $mimes ) {
650
+ if ( extension_loaded( 'fileinfo' ) ) {
651
+ // with the php-extension, a CSV file is issues type text/plain so we fix that back to
652
+ // text/csv by trusting the file extension.
653
+ $finfo = finfo_open( FILEINFO_MIME_TYPE );
654
+ $real_mime = finfo_file( $finfo, $file );
655
+ finfo_close( $finfo );
656
+ if ( $real_mime === 'text/plain' && preg_match( '/\.(csv)$/i', $filename ) ) {
657
+ $values['ext'] = 'csv';
658
+ $values['type'] = 'text/csv';
659
+ }
660
+ } else {
661
+ // without the php-extension, we probably don't have the issue at all, but just to be sure...
662
+ if ( preg_match( '/\.(csv)$/i', $filename ) ) {
663
+ $values['ext'] = 'csv';
664
+ $values['type'] = 'text/csv';
665
+ }
666
+ }
667
+ return $values;
668
+ }
669
+
670
+ // wp-access-areas functions
671
+ function acui_set_cap_for_user( $capability , &$user , $add ) {
672
+ $has_cap = $user->has_cap( $capability );
673
+ $is_change = ($add && ! $has_cap) || (!$add && $has_cap);
674
+ if ( $is_change ) {
675
+ if ( $add ) {
676
+ $user->add_cap( $capability , true );
677
+ do_action( 'wpaa_grant_access' , $user , $capability );
678
+ do_action( "wpaa_grant_{$capability}" , $user );
679
+ } else if ( ! $add ) {
680
+ $user->remove_cap( $capability );
681
+ do_action( 'wpaa_revoke_access' , $user , $capability );
682
+ do_action( "wpaa_revoke_{$capability}" , $user );
683
+ }
684
+ }
685
+ }
686
+
687
+ // misc
688
+ function acui_get_attachment_id_by_url( $url ) {
689
+ $wp_upload_dir = wp_upload_dir();
690
+ // Strip out protocols, so it doesn't fail because searching for http: in https: dir.
691
+ $dir = set_url_scheme( trailingslashit( $wp_upload_dir['baseurl'] ), 'relative' );
692
+
693
+ // Is URL in uploads directory?
694
+ if ( false !== strpos( $url, $dir ) ) {
695
+
696
+ $file = basename( $url );
697
+
698
+ $query_args = array(
699
+ 'post_type' => 'attachment',
700
+ 'post_status' => 'inherit',
701
+ 'fields' => 'ids',
702
+ 'meta_query' => array(
703
+ array(
704
+ 'key' => '_wp_attachment_metadata',
705
+ 'compare' => 'LIKE',
706
+ 'value' => $file,
707
+ ),
708
+ ),
709
+ );
710
+
711
+ $query = new WP_Query( $query_args );
712
+
713
+ if ( $query->have_posts() ) {
714
+ foreach ( $query->posts as $attachment_id ) {
715
+ $meta = wp_get_attachment_metadata( $attachment_id );
716
+ $original_file = basename( $meta['file'] );
717
+ $cropped_files = wp_list_pluck( $meta['sizes'], 'file' );
718
+
719
+ if ( $original_file === $file || in_array( $file, $cropped_files ) ) {
720
+ return (int) $attachment_id;
721
+ }
722
+ }
723
+ }
724
+ }
725
+
726
+ return false;
727
+ }
728
+
729
+ function acui_return_false(){
730
+ return false;
731
+ }
732
+
733
+ // email repeated
734
+ function acui_hack_email( $email ) {
735
+ if ( ! is_email( $email ) ) {
736
+ return;
737
+ }
738
+
739
+ $old_email = $email;
740
+
741
+ for ( $i = 0; ! $skip_remap && email_exists( $email ); $i++ ) {
742
+ $email = str_replace( '@', "+ama{$i}@", $old_email );
743
+ }
744
+
745
+ return $email;
746
+ }
747
+
748
+ function acui_hack_restore_remapped_email_address( $user_id, $email ) {
749
+ global $wpdb;
750
+
751
+ $wpdb->update(
752
+ $wpdb->users,
753
+ array( 'user_email' => $email ),
754
+ array( 'ID' => $user_id )
755
+ );
756
+
757
+ clean_user_cache( $user_id );
758
+ }
trunk/importer.php ADDED
@@ -0,0 +1,809 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) exit;
4
+
5
+ function acui_import_users( $file, $form_data, $attach_id = 0, $is_cron = false, $is_frontend = false ){?>
6
+ <div class="wrap">
7
+ <h2><?php echo apply_filters( 'acui_log_main_title', __('Importing users','import-users-from-csv-with-meta') ); ?></h2>
8
+ <?php
9
+ set_time_limit(0);
10
+
11
+ do_action( 'before_acui_import_users' );
12
+
13
+ global $wpdb;
14
+ global $wp_users_fields;
15
+ global $wp_min_fields;
16
+ global $acui_fields;
17
+ $acui_restricted_fields = acui_get_restricted_fields();
18
+
19
+ if( is_plugin_active( 'wp-access-areas/wp-access-areas.php' ) ){
20
+ $wpaa_labels = WPAA_AccessArea::get_available_userlabels();
21
+ }
22
+
23
+ $buddypress_fields = array();
24
+
25
+ if( is_plugin_active( 'buddypress/bp-loader.php' ) ){
26
+ $profile_groups = BP_XProfile_Group::get( array( 'fetch_fields' => true ) );
27
+
28
+ if ( !empty( $profile_groups ) ) {
29
+ foreach ( $profile_groups as $profile_group ) {
30
+ if ( !empty( $profile_group->fields ) ) {
31
+ foreach ( $profile_group->fields as $field ) {
32
+ $buddypress_fields[] = $field->name;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
38
+
39
+ $users_registered = array();
40
+ $headers = array();
41
+ $headers_filtered = array();
42
+ $update_existing_users = isset( $form_data["update_existing_users"] ) ? sanitize_text_field( $form_data["update_existing_users"] ) : '';
43
+
44
+ $role_default = isset( $form_data["role"] ) ? $form_data["role"] : array( '' );
45
+ if( !is_array( $role_default ) )
46
+ $role_default = array( $role_default );
47
+ array_walk( $role_default, 'sanitize_text_field' );
48
+
49
+ $update_roles_existing_users = isset( $form_data["update_roles_existing_users"] ) ? sanitize_text_field( $form_data["update_roles_existing_users"] ) : '';
50
+ $empty_cell_action = isset( $form_data["empty_cell_action"] ) ? sanitize_text_field( $form_data["empty_cell_action"] ) : '';
51
+ $delete_users = isset( $form_data["delete_users"] ) ? sanitize_text_field( $form_data["delete_users"] ) : '';
52
+ $delete_users_assign_posts = isset( $form_data["delete_users_assign_posts"] ) ? sanitize_text_field( $form_data["delete_users_assign_posts"] ) : '';
53
+ $change_role_not_present = isset( $form_data["change_role_not_present"] ) ? sanitize_text_field( $form_data["change_role_not_present"] ) : '';
54
+ $change_role_not_present_role = isset( $form_data["change_role_not_present_role"] ) ? sanitize_text_field( $form_data["change_role_not_present_role"] ) : '';
55
+
56
+ if( $is_frontend ){
57
+ $activate_users_wp_members = get_option( "acui_frontend_activate_users_wp_members" );
58
+ }
59
+ else{
60
+ $activate_users_wp_members = ( !isset( $form_data["activate_users_wp_members"] ) || empty( $form_data["activate_users_wp_members"] ) ) ? "no_activate" : sanitize_text_field( $form_data["activate_users_wp_members"] );
61
+ }
62
+
63
+ if( $is_cron ){
64
+ $allow_multiple_accounts = ( get_option( "acui_cron_allow_multiple_accounts" ) == "allowed" ) ? "allowed" : "not_allowed";
65
+ }
66
+ else {
67
+ $allow_multiple_accounts = ( empty( $form_data["allow_multiple_accounts"] ) ) ? "not_allowed" : sanitize_text_field( $form_data["allow_multiple_accounts"] );
68
+ }
69
+
70
+ $approve_users_new_user_approve = ( empty( $form_data["approve_users_new_user_appove"] ) ) ? "no_approve" : sanitize_text_field( $form_data["approve_users_new_user_appove"] );
71
+
72
+ update_option( "acui_manually_send_mail", isset( $form_data["sends_email"] ) && $form_data["sends_email"] == 'yes' );
73
+ update_option( "acui_manually_send_mail_updated", isset( $form_data["send_email_updated"] ) && $form_data["send_email_updated"] == 'yes' );
74
+
75
+ // disable WordPress default emails if this must be disabled
76
+ if( !get_option('acui_automatic_wordpress_email') ){
77
+ add_filter( 'send_email_change_email', 'acui_return_false', 999 );
78
+ add_filter( 'send_password_change_email', 'acui_return_false', 999 );
79
+ }
80
+
81
+ // action
82
+ echo apply_filters( "acui_log_header", "<h3>" . __('Ready to registers','import-users-from-csv-with-meta') . "</h3>" );
83
+ echo apply_filters( "acui_log_header_first_row_explanation", "<p>" . __('First row represents the form of sheet','import-users-from-csv-with-meta') . "</p>" );
84
+
85
+ $row = 0;
86
+ $positions = array();
87
+ $error_importing = false;
88
+
89
+ ini_set('auto_detect_line_endings',TRUE);
90
+
91
+ $delimiter = acui_detect_delimiter( $file );
92
+
93
+ $manager = new SplFileObject( $file );
94
+ while ( $data = $manager->fgetcsv( $delimiter ) ):
95
+ if( empty($data[0]) )
96
+ continue;
97
+
98
+ if( count( $data ) == 1 )
99
+ $data = $data[0];
100
+
101
+ if( !is_array( $data ) ){
102
+ _e( 'CSV file seems to be bad formed. Please use LibreOffice to create and manage CSV to be sure the format is correct', 'import-users-from-csv-with-meta');
103
+ break;
104
+ }
105
+
106
+ foreach ( $data as $key => $value ){
107
+ $data[ $key ] = preg_replace( '/<script\b[^>]*>(.*?)<\/script>/is', '', trim( $value ) );
108
+ }
109
+
110
+ for( $i = 0; $i < count($data); $i++ ){
111
+ $data[$i] = acui_string_conversion( $data[$i] );
112
+
113
+ if( is_serialized( $data[$i] ) ) // serialized
114
+ $data[$i] = maybe_unserialize( $data[$i] );
115
+ elseif( strpos( $data[$i], "::" ) !== false ) // list of items
116
+ $data[$i] = explode( "::", $data[$i] );
117
+ }
118
+
119
+ if( $row == 0 ):
120
+ $data = apply_filters( 'pre_acui_import_header', $data );
121
+
122
+ // check min columns username - email
123
+ if(count( $data ) < 2){
124
+ echo "<div id='message' class='error'>" . __( 'File must contain at least 2 columns: username and email', 'import-users-from-csv-with-meta' ) . "</div>";
125
+ break;
126
+ }
127
+
128
+ $i = 0;
129
+ $password_position = false;
130
+ $id_position = false;
131
+
132
+ foreach ( $acui_restricted_fields as $acui_restricted_field ) {
133
+ $positions[ $acui_restricted_field ] = false;
134
+ }
135
+
136
+ foreach( $data as $element ){
137
+ $headers[] = $element;
138
+
139
+ if( in_array( strtolower( $element ) , $acui_restricted_fields ) )
140
+ $positions[ strtolower( $element ) ] = $i;
141
+
142
+ if( !in_array( strtolower( $element ), $acui_restricted_fields ) && !in_array( $element, $buddypress_fields ) )
143
+ $headers_filtered[] = $element;
144
+
145
+ $i++;
146
+ }
147
+
148
+ $columns = count( $data );
149
+
150
+ update_option( "acui_columns", $headers_filtered );
151
+ ?>
152
+ <style type="text/css">
153
+ .wrap{
154
+ overflow-x:auto!important;
155
+ }
156
+
157
+ .wrap table{
158
+ min-width:800px!important;
159
+ }
160
+
161
+ .wrap table th,
162
+ .wrap table td{
163
+ width:200px!important;
164
+ }
165
+ </style>
166
+ <h3><?php echo apply_filters( 'acui_log_inserting_updating_data_title', __( 'Inserting and updating data', 'import-users-from-csv-with-meta' ) ); ?></h3>
167
+ <table>
168
+ <tr><th><?php _e( 'Row', 'import-users-from-csv-with-meta' ); ?></th><?php foreach( $headers as $element ) echo "<th>" . $element . "</th>"; ?></tr>
169
+ <?php
170
+ $row++;
171
+ else:
172
+ $data = apply_filters( 'pre_acui_import_single_user_data', $data, $headers );
173
+
174
+ if( count( $data ) != $columns ): // if number of columns is not the same that columns in header
175
+ echo '<script>alert("' . __( 'Row number', 'import-users-from-csv-with-meta' ) . " $row " . __( 'does not have the same columns than the header, we are going to skip', 'import-users-from-csv-with-meta') . '");</script>';
176
+ $error_importing = true;
177
+ continue;
178
+ endif;
179
+
180
+ do_action('pre_acui_import_single_user', $headers, $data );
181
+ $data = apply_filters('pre_acui_import_single_user_data', $data, $headers);
182
+
183
+ $username = $data[0];
184
+ $email = $data[1];
185
+ $user_id = 0;
186
+ $problematic_row = false;
187
+ $password_position = $positions["password"];
188
+ $password = "";
189
+ $role_position = $positions["role"];
190
+ $role = "";
191
+ $id_position = $positions["id"];
192
+
193
+ if ( !empty( $id_position ) )
194
+ $id = $data[ $id_position ];
195
+ else
196
+ $id = "";
197
+
198
+ $created = true;
199
+
200
+ if( $password_position === false ){
201
+ $password = wp_generate_password( apply_filters( 'acui_auto_password_length', 12 ), apply_filters( 'acui_auto_password_special_chars', true ), apply_filters( 'acui_auto_password_extra_special_chars', false ) );
202
+ }
203
+ else{
204
+ $password = $data[ $password_position ];
205
+ }
206
+
207
+ if( $role_position === false ){
208
+ $role = $role_default;
209
+ }
210
+ else{
211
+ $roles_cells = explode( ',', $data[ $role_position ] );
212
+
213
+ if( !is_array( $roles_cells ) )
214
+ $roles_cells = array( $roles_cells );
215
+
216
+ array_walk( $roles_cells, 'trim' );
217
+ $role = $roles_cells;
218
+ }
219
+
220
+ if( !empty( $id ) ){ // if user have used id
221
+ if( acui_user_id_exists( $id ) ){
222
+ if( $update_existing_users == 'no' ){
223
+ continue;
224
+ }
225
+
226
+ // we check if username is the same than in row
227
+ $user = get_user_by( 'ID', $id );
228
+
229
+ if( $user->user_login == $username ){
230
+ $user_id = $id;
231
+
232
+ if( $password !== "" )
233
+ wp_set_password( $password, $user_id );
234
+
235
+ if( !empty( $email ) ) {
236
+ $updateEmailArgs = array(
237
+ 'ID' => $user_id,
238
+ 'user_email' => $email
239
+ );
240
+ wp_update_user( $updateEmailArgs );
241
+ }
242
+
243
+ $created = false;
244
+ }
245
+ else{
246
+ echo '<script>alert("' . __( 'Problems with ID', 'import-users-from-csv-with-meta' ) . ": $id , " . __( 'username is not the same in the CSV and in database, we are going to skip.', 'import-users-from-csv-with-meta' ) . '");</script>';
247
+ continue;
248
+ }
249
+
250
+ }
251
+ else{
252
+ $userdata = array(
253
+ 'ID' => $id,
254
+ 'user_login' => $username,
255
+ 'user_email' => $email,
256
+ 'user_pass' => $password
257
+ );
258
+
259
+ $user_id = wp_insert_user( $userdata );
260
+
261
+ $created = true;
262
+ }
263
+ }
264
+ elseif( !empty( $email ) && ( ( sanitize_email( $email ) == '' ) ) ){ // if email is invalid
265
+ $problematic_row = true;
266
+ $error_importing = true;
267
+ $data[0] = __('Invalid EMail','import-users-from-csv-with-meta')." ($email)";
268
+ }
269
+ elseif( empty( $email) ) { // if email is blank
270
+ $problematic_row = true;
271
+ $error_importing = true;
272
+ $data[0] = __( 'EMail not specified', 'import-users-from-csv-with-meta' );
273
+ }
274
+ elseif( username_exists( $username ) ){ // if user exists, we take his ID by login, we will update his mail if it has changed
275
+ if( $update_existing_users == 'no' ){
276
+ continue;
277
+ }
278
+
279
+ $user_object = get_user_by( "login", $username );
280
+ $user_id = $user_object->ID;
281
+
282
+ if( $password !== "" )
283
+ wp_set_password( $password, $user_id );
284
+
285
+ if( !empty( $email ) ) {
286
+ $updateEmailArgs = array(
287
+ 'ID' => $user_id,
288
+ 'user_email' => $email
289
+ );
290
+ wp_update_user( $updateEmailArgs );
291
+ }
292
+
293
+ $created = false;
294
+ }
295
+ elseif( email_exists( $email ) && $allow_multiple_accounts == "not_allowed" ){ // if the email is registered, we take the user from this and we don't allow repeated emails
296
+ if( $update_existing_users == 'no' ){
297
+ continue;
298
+ }
299
+
300
+ $user_object = get_user_by( "email", $email );
301
+ $user_id = $user_object->ID;
302
+
303
+ $data[0] = __( 'User already exists as:', 'import-users-from-csv-with-meta' ) . $user_object->user_login . '<br/>' . __( '(in this CSV file is called:', 'import-users-from-csv-with-meta' ) . $username . ")";
304
+ $problematic_row = true;
305
+ $error_importing = true;
306
+
307
+ if( $password !== "" )
308
+ wp_set_password( $password, $user_id );
309
+
310
+ $created = false;
311
+ }
312
+ elseif( email_exists( $email ) && $allow_multiple_accounts == "allowed" ){ // if the email is registered and repeated emails are allowed
313
+ // if user is new, but the password in csv is empty, generate a password for this user
314
+ if( $password === "" ) {
315
+ $password = wp_generate_password( apply_filters( 'acui_auto_password_length', 12 ), apply_filters( 'acui_auto_password_special_chars', true ), apply_filters( 'acui_auto_password_extra_special_chars', false ) );
316
+ }
317
+
318
+ $hacked_email = acui_hack_email( $email );
319
+ $user_id = wp_create_user( $username, $password, $hacked_email );
320
+ acui_hack_restore_remapped_email_address( $user_id, $email );
321
+ }
322
+ else{
323
+ // if user is new, but the password in csv is empty, generate a password for this user
324
+ if( $password === "" ) {
325
+ $password = wp_generate_password( apply_filters( 'acui_auto_password_length', 12 ), apply_filters( 'acui_auto_password_special_chars', true ), apply_filters( 'acui_auto_password_extra_special_chars', false ) );
326
+ }
327
+
328
+ $user_id = wp_create_user( $username, $password, $email );
329
+ }
330
+
331
+ if( is_wp_error( $user_id ) ){ // in case the user is generating errors after this checks
332
+ $error_string = $user_id->get_error_message();
333
+ echo '<script>alert("' . __( 'Problems with user:', 'import-users-from-csv-with-meta' ) . $username . __( ', we are going to skip. \r\nError: ', 'import-users-from-csv-with-meta') . $error_string . '");</script>';
334
+ $error_importing = true;
335
+ continue;
336
+ }
337
+
338
+ $users_registered[] = $user_id;
339
+ $user_object = new WP_User( $user_id );
340
+
341
+ if( $created || $update_roles_existing_users != 'no' ){
342
+ if(!( in_array("administrator", acui_get_roles($user_id), FALSE) || is_multisite() && is_super_admin( $user_id ) )){
343
+
344
+ if( $update_roles_existing_users == 'yes' || $created ){
345
+ $default_roles = $user_object->roles;
346
+ foreach ( $default_roles as $default_role ) {
347
+ $user_object->remove_role( $default_role );
348
+ }
349
+ }
350
+
351
+ if( $update_roles_existing_users == 'yes' || $update_roles_existing_users == 'yes_no_override' || $created ){
352
+ if( !empty( $role ) ){
353
+ if( is_array( $role ) ){
354
+ foreach ($role as $single_role) {
355
+ $user_object->add_role( $single_role );
356
+ }
357
+ }
358
+ else{
359
+ $user_object->add_role( $role );
360
+ }
361
+ }
362
+
363
+ $invalid_roles = array();
364
+ if( !empty( $role ) ){
365
+ if( !is_array( $role ) ){
366
+ $role_tmp = $role;
367
+ $role = array();
368
+ $role[] = $role_tmp;
369
+ }
370
+
371
+ foreach ($role as $single_role) {
372
+ $single_role = strtolower($single_role);
373
+ if( get_role( $single_role ) ){
374
+ $user_object->add_role( $single_role );
375
+ }
376
+ else{
377
+ $invalid_roles[] = trim( $single_role );
378
+ }
379
+ }
380
+ }
381
+
382
+ if ( !empty( $invalid_roles ) ){
383
+ $problematic_row = true;
384
+ $error_importing = true;
385
+ if( count( $invalid_roles ) == 1 )
386
+ $data[0] = __('Invalid role','import-users-from-csv-with-meta').' (' . reset( $invalid_roles ) . ')';
387
+ else
388
+ $data[0] = __('Invalid roles','import-users-from-csv-with-meta').' (' . implode( ', ', $invalid_roles ) . ')';
389
+ }
390
+ }
391
+ }
392
+ }
393
+
394
+ // Multisite add user to current blog
395
+ if( is_multisite() ){
396
+ if( !empty( $role ) ){
397
+ if( is_array( $role ) ){
398
+ foreach ($role as $single_role) {
399
+ add_user_to_blog( get_current_blog_id(), $user_id, $single_role );
400
+ }
401
+ }
402
+ else{
403
+ add_user_to_blog( get_current_blog_id(), $user_id, $role );
404
+ }
405
+ }
406
+ }
407
+
408
+ // WP Members activation
409
+ if( $activate_users_wp_members == "activate" )
410
+ update_user_meta( $user_id, "active", true );
411
+
412
+ // New User Approve
413
+ if( $approve_users_new_user_approve == "approve" )
414
+ update_user_meta( $user_id, "pw_user_status", "approved" );
415
+ else
416
+ update_user_meta( $user_id, "pending", true );
417
+
418
+ if( $columns > 2 ){
419
+ for( $i = 2 ; $i < $columns; $i++ ):
420
+ $data[$i] = apply_filters( 'pre_acui_import_single_user_single_data', $data[$i], $headers[$i], $i );
421
+
422
+ if( !empty( $data ) ){
423
+ if( strtolower( $headers[ $i ] ) == "password" ){ // passwords -> continue
424
+ continue;
425
+ }
426
+ elseif( strtolower( $headers[ $i ] ) == "user_pass" ){ // hashed pass
427
+ $wpdb->update( $wpdb->users, array( 'user_pass' => wp_slash( $data[ $i ] ) ), array( 'ID' => $user_id ) );
428
+ wp_cache_delete( $user_id, 'users' );
429
+ continue;
430
+ }
431
+ elseif( in_array( $headers[ $i ], $wp_users_fields ) ){ // wp_user data
432
+ if( $data[ $i ] === '' && $empty_cell_action == "leave" ){
433
+ continue;
434
+ }
435
+ else{
436
+ wp_update_user( array( 'ID' => $user_id, $headers[ $i ] => $data[ $i ] ) );
437
+ continue;
438
+ }
439
+ }
440
+ elseif( strtolower( $headers[ $i ] ) == "wp-access-areas" && is_plugin_active( 'wp-access-areas/wp-access-areas.php' ) ){ // wp-access-areas
441
+ $active_labels = array_map( 'trim', explode( "#", $data[ $i ] ) );
442
+
443
+ foreach( $wpaa_labels as $wpa_label ){
444
+ if( in_array( $wpa_label->cap_title , $active_labels )){
445
+ acui_set_cap_for_user( $wpa_label->capability , $user_object , true );
446
+ }
447
+ else{
448
+ acui_set_cap_for_user( $wpa_label->capability , $user_object , false );
449
+ }
450
+ }
451
+
452
+ continue;
453
+ }
454
+ elseif( ( $bpf_pos = array_search( $headers[ $i ], $buddypress_fields ) ) !== false ){ // buddypress
455
+ switch( $buddypress_types[ $bpf_pos ] ){
456
+ case 'datebox':
457
+ $date = $data[$i];
458
+ switch( true ){
459
+ case is_numeric( $date ):
460
+ $UNIX_DATE = ($date - 25569) * 86400;
461
+ $datebox = gmdate("Y-m-d H:i:s", $UNIX_DATE);break;
462
+ case preg_match('/(\d{1,2})[\/-](\d{1,2})[\/-]([4567890]{1}\d{1})/',$date,$match):
463
+ $match[3]='19'.$match[3];
464
+ case preg_match('/(\d{1,2})[\/-](\d{1,2})[\/-](20[4567890]{1}\d{1})/',$date,$match):
465
+ case preg_match('/(\d{1,2})[\/-](\d{1,2})[\/-](19[4567890]{1}\d{1})/',$date,$match):
466
+ $datebox= ($match[3].'-'.$match[2].'-'.$match[1]);
467
+ break;
468
+
469
+ default:
470
+ $datebox = $date;
471
+ }
472
+
473
+ $datebox = strtotime( $datebox );
474
+ xprofile_set_field_data( $headers[$i], $user_id, date( 'Y-m-d H:i:s', $datebox ) );
475
+ unset( $datebox );
476
+ break;
477
+ default:
478
+ xprofile_set_field_data( $headers[$i], $user_id, $data[$i] );
479
+ }
480
+
481
+ continue;
482
+ }
483
+ elseif( $headers[ $i ] == 'bp_group' ){ // buddypress group
484
+ $groups = explode( ',', $data[ $i ] );
485
+ $groups_role = explode( ',', $data[ $positions[ 'bp_group_role' ] ] );
486
+
487
+ for( $j = 0; $j < count( $groups ); $j++ ){
488
+ $group_id = BP_Groups_Group::group_exists( $groups[ $j ] );
489
+
490
+ if( !empty( $group_id ) ){
491
+ groups_join_group( $group_id, $user_id );
492
+
493
+ if( $groups_role[ $j ] == 'Moderator' ){
494
+ groups_promote_member( $user_id, $group_id, 'mod' );
495
+ }
496
+ elseif( $groups_role[ $j ] == 'Administrator' ){
497
+ groups_promote_member( $user_id, $group_id, 'admin' );
498
+ }
499
+ }
500
+ }
501
+
502
+ continue;
503
+ }
504
+ elseif( $headers[ $i ] == 'bp_group_role' ){
505
+ continue;
506
+ }
507
+ else{ // wp_usermeta data
508
+ if( $data[ $i ] === '' ){
509
+ if( $empty_cell_action == "delete" )
510
+ delete_user_meta( $user_id, $headers[ $i ] );
511
+ else
512
+ continue;
513
+ }
514
+ else{
515
+ update_user_meta( $user_id, $headers[ $i ], $data[ $i ] );
516
+ continue;
517
+ }
518
+ }
519
+
520
+ }
521
+ endfor;
522
+ }
523
+
524
+ do_action('post_acui_import_single_user', $headers, $data, $user_id );
525
+
526
+ $styles = "";
527
+ if( $problematic_row )
528
+ $styles = "background-color:red; color:white;";
529
+
530
+ echo "<tr style='$styles' ><td>" . ($row - 1) . "</td>";
531
+ foreach ($data as $element){
532
+ if( is_array( $element ) )
533
+ $element = implode ( ',' , $element );
534
+
535
+ $element = sanitize_textarea_field( $element );
536
+ echo "<td>$element</td>";
537
+ }
538
+
539
+ echo "</tr>\n";
540
+
541
+ flush();
542
+
543
+ $mail_for_this_user = false;
544
+ if( $is_cron ){
545
+ if( get_option( "acui_cron_send_mail" ) ){
546
+ if( $created || ( !$created && get_option( "acui_cron_send_mail_updated" ) ) ){
547
+ $mail_for_this_user = true;
548
+ }
549
+ }
550
+ }
551
+ elseif( $is_frontend ){
552
+ if( get_option( "acui_frontend_send_mail" ) ){
553
+ if( $created || ( !$created && get_option( "acui_frontend_send_mail_updated" ) ) ){
554
+ $mail_for_this_user = true;
555
+ }
556
+ }
557
+ }
558
+ else{
559
+ if( isset( $form_data["sends_email"] ) && $form_data["sends_email"] ){
560
+ if( $created || ( !$created && ( isset( $form_data["send_email_updated"] ) && $form_data["send_email_updated"] ) ) )
561
+ $mail_for_this_user = true;
562
+ }
563
+ }
564
+
565
+ // send mail
566
+ if( isset( $mail_for_this_user ) && $mail_for_this_user ):
567
+ $key = get_password_reset_key( $user_object );
568
+ $user_login= $user_object->user_login;
569
+
570
+ $body_mail = get_option( "acui_mail_body" );
571
+ $subject = get_option( "acui_mail_subject" );
572
+
573
+ $body_mail = str_replace( "**loginurl**", wp_login_url(), $body_mail );
574
+ $body_mail = str_replace( "**username**", $user_login, $body_mail );
575
+ $body_mail = str_replace( "**lostpasswordurl**", wp_lostpassword_url(), $body_mail );
576
+
577
+ if( !is_wp_error( $key ) ){
578
+ $passwordreseturl = apply_filters( 'acui_email_passwordreseturl', network_site_url( 'wp-login.php?action=rp&key=' . $key . '&login=' . rawurlencode( $user_login ), 'login' ) );
579
+ $body_mail = str_replace( "**passwordreseturl**", $passwordreseturl, $body_mail );
580
+
581
+ $passwordreseturllink = wp_sprintf( '<a href="%s">%s</a>', $passwordreseturl, __( 'Password reset link', 'import-users-from-csv-with-meta' ) );
582
+ $body_mail = str_replace( "**passwordreseturllink**", $passwordreseturllink, $body_mail );
583
+ }
584
+
585
+ if( empty( $password ) && !$created )
586
+ $password = __( 'Password has not been changed', 'import-users-from-csv-with-meta' );
587
+
588
+ $body_mail = str_replace("**password**", $password, $body_mail);
589
+ $body_mail = str_replace("**email**", $email, $body_mail);
590
+
591
+ foreach ( $wp_users_fields as $wp_users_field ) {
592
+ if( $positions[ $wp_users_field ] != false && $wp_users_field != "password" ){
593
+ $body_mail = str_replace("**" . $wp_users_field . "**", $data[ $positions[ $wp_users_field ] ] , $body_mail);
594
+ }
595
+ }
596
+
597
+ for( $i = 0 ; $i < count( $headers ); $i++ ) {
598
+ $body_mail = str_replace("**" . $headers[ $i ] . "**", $data[ $i ] , $body_mail);
599
+ }
600
+
601
+ $body_mail = wpautop( $body_mail );
602
+ $headers_mail = apply_filters( 'acui_import_email_headers', array( 'Content-Type: text/html; charset=UTF-8' ), $headers, $data );
603
+
604
+ $attachments = array();
605
+ $attachment_id = get_option( 'acui_mail_attachment_id' );
606
+ if( !empty( $attachment_id ) )
607
+ $attachments[] = get_attached_file( $attachment_id );
608
+
609
+ wp_mail( apply_filters( 'acui_import_email_to', $email, $headers, $data ), $subject, $body_mail, $headers_mail );
610
+ endif;
611
+
612
+ endif;
613
+
614
+ $row++;
615
+ endwhile;
616
+
617
+ // let the filter of default WordPress emails as it were before deactivating them
618
+ if( !get_option('acui_automatic_wordpress_email') ){
619
+ remove_filter( 'send_email_change_email', 'acui_return_false', 999 );
620
+ remove_filter( 'send_password_change_email', 'acui_return_false', 999 );
621
+ }
622
+
623
+ if( $attach_id != 0 )
624
+ wp_delete_attachment( $attach_id );
625
+
626
+ // delete all users that have not been imported
627
+ $delete_users_flag = false;
628
+ $change_role_not_present_flag = false;
629
+
630
+ if( $delete_users == 'yes' ){
631
+ $delete_users_flag = true;
632
+ }
633
+
634
+ if( $is_cron && get_option( "acui_cron_delete_users" ) ){
635
+ $delete_users_flag = true;
636
+ $delete_users_assign_posts = get_option( "acui_cron_delete_users_assign_posts");
637
+ }
638
+
639
+ if( $is_frontend && get_option( "acui_frontend_delete_users" ) ){
640
+ $delete_users_flag = true;
641
+ $delete_users_assign_posts = get_option( "acui_frontend_delete_users_assign_posts");
642
+ }
643
+
644
+ if( $change_role_not_present == 'yes' ){
645
+ $change_role_not_present_flag = true;
646
+ }
647
+
648
+ if( $is_cron && get_option( "acui_cron_change_role_not_present" ) ){
649
+ $change_role_not_present_flag = true;
650
+ $change_role_not_present_role = get_option( "acui_cron_change_role_not_present_role");
651
+ }
652
+
653
+ if( $is_frontend && get_option( "acui_frontend_change_role_not_present" ) ){
654
+ $change_role_not_present_flag = true;
655
+ $change_role_not_present_role = get_option( "acui_frontend_change_role_not_present_role");
656
+ }
657
+
658
+ if( $error_importing ){ // if there is some problem of some kind importing we won't proceed with delete or changing role to users not present to avoid problems
659
+ $delete_users_flag = false;
660
+ $change_role_not_present_flag = false;
661
+ }
662
+
663
+ if( $delete_users_flag ):
664
+ require_once( ABSPATH . 'wp-admin/includes/user.php');
665
+
666
+ $all_users = get_users( array(
667
+ 'fields' => array( 'ID' ),
668
+ 'role__not_in' => array( 'administrator' )
669
+ ) );
670
+
671
+ foreach ( $all_users as $user ) {
672
+ if( !in_array( $user->ID, $users_registered ) ){
673
+ if( !empty( $delete_users_assign_posts ) && get_userdata( $delete_users_assign_posts ) !== false ){
674
+ wp_delete_user( $user->ID, $delete_users_assign_posts );
675
+ }
676
+ else{
677
+ wp_delete_user( $user->ID );
678
+ }
679
+ }
680
+ }
681
+ endif;
682
+
683
+ if( $change_role_not_present ):
684
+ require_once( ABSPATH . 'wp-admin/includes/user.php');
685
+
686
+ $all_users = get_users( array(
687
+ 'fields' => array( 'ID' ),
688
+ 'role__not_in' => array( 'administrator' )
689
+ ) );
690
+
691
+ foreach ( $all_users as $user ) {
692
+ if( !in_array( $user->ID, $users_registered ) ){
693
+ $user_object = new WP_User( $user->ID );
694
+ $user_object->set_role( $change_role_not_present_role );
695
+ }
696
+ }
697
+ endif;
698
+ ?>
699
+ </table>
700
+
701
+ <?php if( !$is_frontend ): ?>
702
+ <br/>
703
+ <p><?php _e( 'Process finished you can go', 'import-users-from-csv-with-meta' ); ?> <a href="<?php echo get_admin_url( null, 'users.php' ); ?>"><?php _e( 'here to see results', 'import-users-from-csv-with-meta' ); ?></a></p>
704
+ <?php endif; ?>
705
+
706
+ <?php
707
+ ini_set('auto_detect_line_endings',FALSE);
708
+
709
+ do_action( 'after_acui_import_users' );
710
+ ?>
711
+ </div>
712
+ <?php
713
+ }
714
+
715
+ function acui_options(){
716
+ if ( !current_user_can( 'create_users' ) ) {
717
+ wp_die( __( 'You are not allowed to see this content.', 'import-users-from-csv-with-meta' ));
718
+ }
719
+
720
+ if ( isset ( $_GET['tab'] ) )
721
+ $tab = $_GET['tab'];
722
+ else
723
+ $tab = 'homepage';
724
+
725
+ if( isset( $_POST ) && !empty( $_POST ) ):
726
+ if ( !wp_verify_nonce( $_POST['security'], 'codection-security' ) ) {
727
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
728
+ }
729
+
730
+ switch ( $tab ){
731
+ case 'homepage':
732
+ update_option( 'acui_last_roles_used', array_map( 'sanitize_text_field', $_POST['role'] ) );
733
+ acui_fileupload_process( $_POST, false );
734
+ return;
735
+ break;
736
+
737
+ case 'frontend':
738
+ acui_manage_frontend_process( $_POST );
739
+ break;
740
+
741
+ case 'columns':
742
+ acui_manage_extra_profile_fields( $_POST );
743
+ break;
744
+
745
+ case 'mail-options':
746
+ acui_save_mail_template( $_POST );
747
+ break;
748
+
749
+ case 'cron':
750
+ acui_manage_cron_process( $_POST );
751
+ break;
752
+ }
753
+ endif;
754
+
755
+ if ( isset ( $_GET['tab'] ) )
756
+ acui_admin_tabs( $_GET['tab'] );
757
+ else
758
+ acui_admin_tabs('homepage');
759
+
760
+ switch ( $tab ){
761
+ case 'homepage' :
762
+ ACUI_Homepage::admin_gui();
763
+ break;
764
+
765
+ case 'export' :
766
+ ACUI_Exporter::admin_gui();
767
+ break;
768
+
769
+ case 'frontend':
770
+ ACUI_Frontend::admin_gui();
771
+ break;
772
+
773
+ case 'columns':
774
+ ACUI_Columns::admin_gui();
775
+ break;
776
+
777
+ case 'meta-keys':
778
+ ACUI_MetaKeys::admin_gui();
779
+ break;
780
+
781
+ case 'doc':
782
+ ACUI_Doc::message();
783
+ break;
784
+
785
+ case 'mail-options':
786
+ ACUI_Email_Options::admin_gui();
787
+ break;
788
+
789
+ case 'cron':
790
+ ACUI_Cron::admin_gui();
791
+ break;
792
+
793
+ case 'donate':
794
+ ACUI_Donate::message();
795
+ break;
796
+
797
+ case 'help':
798
+ ACUI_Help::message();
799
+ break;
800
+
801
+ case 'new_features':
802
+ ACUI_NewFeatures::message();
803
+ break;
804
+
805
+ default:
806
+ do_action( 'acui_tab_action_' . $tab );
807
+ break;
808
+ }
809
+ }
trunk/include/shortcode-frontend.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ add_shortcode( 'import-users-from-csv-with-meta', 'acui_frontend' );
3
+ function acui_frontend() {
4
+ ob_start();
5
+
6
+ if( !current_user_can( 'create_users' ) )
7
+ wp_die( __( 'Only users who are able to create users can manage this form.', 'import-users-from-csv-with-meta' ) );
8
+
9
+ if ( $_FILES && !empty( $_POST ) ) {
10
+ if ( !wp_verify_nonce( $_POST['security'], 'codection-security' ) ){
11
+ wp_die( __( 'Nonce check failed', 'import-users-from-csv-with-meta' ) );
12
+ }
13
+
14
+ foreach ( $_FILES as $file => $array ) {
15
+ $csv_file_id = acui_frontend_upload_file( $file );
16
+
17
+ $form_data = array();
18
+ $form_data[ "path_to_file" ] = get_attached_file( $csv_file_id );
19
+ $form_data[ "role" ] = get_option( "acui_frontend_role");
20
+ $form_data[ "empty_cell_action" ] = "leave";
21
+ $form_data[ "is_frontend" ] = true;
22
+ $form_data[ "security" ] = wp_create_nonce( "codection-security" );
23
+
24
+ acui_fileupload_process( $form_data, false, true );
25
+
26
+ wp_delete_attachment( $csv_file_id, true );
27
+
28
+ continue;
29
+ }
30
+ }
31
+ ?>
32
+ <form method="POST" enctype="multipart/form-data" action="" accept-charset="utf-8" class="acui_frontend_form">
33
+ <label><?php _e( 'CSV file <span class="description">(required)</span>', 'import-users-from-csv-with-meta' ); ?></label></th>
34
+ <input class="acui_frontend_file" type="file" name="uploadfile" id="uploadfile" size="35" class="uploadfile" />
35
+ <input class="acui_frontend_submit" type="submit" value="<?php _e( 'Upload and process', 'import-users-from-csv-with-meta' ); ?>"/>
36
+
37
+ <?php wp_nonce_field( 'codection-security', 'security' ); ?>
38
+ </form>
39
+ <?php
40
+ return ob_get_clean();
41
+ }
42
+
43
+ function acui_frontend_upload_file( $file_handler ) {
44
+ if ( $_FILES[$file_handler]['error'] !== UPLOAD_ERR_OK ) {
45
+ __return_false();
46
+ }
47
+ require_once( ABSPATH . "wp-admin" . '/includes/image.php' );
48
+ require_once( ABSPATH . "wp-admin" . '/includes/file.php' );
49
+ require_once( ABSPATH . "wp-admin" . '/includes/media.php' );
50
+ $attach_id = media_handle_upload( $file_handler, 0 );
51
+ return $attach_id;
52
+ }
trunk/languages/import-users-from-csv-with-meta-de_DE.mo ADDED
Binary file
trunk/languages/import-users-from-csv-with-meta-de_DE.po ADDED
@@ -0,0 +1,1151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
7
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
+ "POT-Creation-Date: 2016-11-07 21:17+0100\n"
9
+ "PO-Revision-Date: \n"
10
+ "Language-Team: Your Team <translations@example.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Generator: Poedit 1.8.9\n"
22
+ "Last-Translator: \n"
23
+ "Language: de_DE\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: smtp.php:26 smtp.php:245
27
+ msgid "Send Test"
28
+ msgstr "Test senden"
29
+
30
+ #: smtp.php:40
31
+ msgid "Test mail to "
32
+ msgstr "Test-Mail an"
33
+
34
+ #: smtp.php:41
35
+ msgid ""
36
+ "This is a test email generated by the Import User From CSV With Meta "
37
+ "WordPress plugin."
38
+ msgstr ""
39
+ "Dies ist eine Test-Email erzeugt vom Plugin \"Import Benutzer aus CSV mit "
40
+ "Meta\"."
41
+
42
+ #: smtp.php:79
43
+ msgid "Message sent successfully"
44
+ msgstr "Nachricht erfolgreich gesendet"
45
+
46
+ #: smtp.php:83
47
+ msgid "Test Message Sent"
48
+ msgstr "Nachricht gesendet"
49
+
50
+ #: smtp.php:84
51
+ msgid "The result was:"
52
+ msgstr "Das Ergebnis war:"
53
+
54
+ #: smtp.php:86
55
+ msgid "The full debugging output is shown below:"
56
+ msgstr "Die vollständige Debugausgabe ist nachfolgend dargestellt:"
57
+
58
+ #: smtp.php:88
59
+ msgid "The SMTP debugging output is shown below:"
60
+ msgstr "Die SMTP-Debugausgabe ist nachfolgend dargestellt:"
61
+
62
+ #: smtp.php:119
63
+ msgid "Import User From CSV With Meta - SMTP server options"
64
+ msgstr "SMTP-Server-Optionen"
65
+
66
+ #: smtp.php:123
67
+ msgid "Global options"
68
+ msgstr "Allgemeine Optionen"
69
+
70
+ #: smtp.php:124
71
+ msgid ""
72
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
73
+ "settings."
74
+ msgstr "Eigene SMTP-Einstellungen oder WordPress-Einstellungen verwenden."
75
+
76
+ #: smtp.php:128
77
+ msgid "Settings"
78
+ msgstr "Einstellungen"
79
+
80
+ #: smtp.php:131
81
+ msgid "Use plugin SMTP settings"
82
+ msgstr "SMTP-Einstellungen des Plugins verwenden"
83
+
84
+ #: smtp.php:133
85
+ msgid "Use this settings to send mail."
86
+ msgstr "Diese Einstellungen zum Mailversand verwenden."
87
+
88
+ #: smtp.php:135
89
+ msgid "Use WordPress general settings to send mail."
90
+ msgstr "Allgemeine WordPress-Einstellungen zum Mailversand verwenden."
91
+
92
+ #: smtp.php:143
93
+ msgid "From Email"
94
+ msgstr "Emailadresse des Absenders"
95
+
96
+ #: smtp.php:145
97
+ msgid ""
98
+ "You can specify the email address that emails should be sent from. If you "
99
+ "leave this blank, the default email will be used."
100
+ msgstr ""
101
+ "Absenderadresse festlegen. Falls leer, wird die Default-Emailadresse "
102
+ "verwendet."
103
+
104
+ #: smtp.php:145
105
+ msgid ""
106
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
107
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
108
+ "email@domain.com&gt; in this field."
109
+ msgstr ""
110
+ "<strong>Achtung</strong>Anscheinend wird eine WordPressversion vor 2.3 "
111
+ "verwendet. Ignoriere das Feld \"Absendername\" und füge statt dessen Name&lt;"
112
+ "email@domain.com&gt; in dieses Feld."
113
+
114
+ #: smtp.php:148
115
+ msgid "From Name"
116
+ msgstr "Absendername"
117
+
118
+ #: smtp.php:150
119
+ msgid ""
120
+ "You can specify the name that emails should be sent from. If you leave this "
121
+ "blank, the emails will be sent from WordPress."
122
+ msgstr ""
123
+ "Absendernamen festlegen. Falls leer, werden die Emails von WordPress "
124
+ "gesendet."
125
+
126
+ #: smtp.php:156 smtp.php:159
127
+ msgid "Mailer"
128
+ msgstr "Mailer"
129
+
130
+ #: smtp.php:161
131
+ msgid "Send emails of this plugin via SMTP."
132
+ msgstr "Emails dieses Plugins per SMTP senden."
133
+
134
+ #: smtp.php:163
135
+ msgid "Use the PHP mail() function to send emails."
136
+ msgstr "Die PHP mail() Funktion zum Emailversand verwenden."
137
+
138
+ #: smtp.php:171 smtp.php:174
139
+ msgid "Return Path"
140
+ msgstr "Antwort an"
141
+
142
+ #: smtp.php:176
143
+ msgid "Set the return-path to match the From Email"
144
+ msgstr "\"Antowrt an\" auf Absenderadresse setzen"
145
+
146
+ #: smtp.php:182
147
+ msgid "SMTP Options"
148
+ msgstr "SMTP Optionen"
149
+
150
+ #: smtp.php:183
151
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
152
+ msgstr "Diese Optionen werden nur angewendet, wenn SMTP ausgewählt wurde."
153
+
154
+ #: smtp.php:187
155
+ msgid "SMTP Host"
156
+ msgstr "SMTP Host"
157
+
158
+ #: smtp.php:191
159
+ msgid "SMTP Port"
160
+ msgstr "SMTP Port"
161
+
162
+ #: smtp.php:195 smtp.php:198
163
+ msgid "Encryption"
164
+ msgstr "Verschlüsselung"
165
+
166
+ #: smtp.php:200
167
+ msgid "No encryption."
168
+ msgstr "Keine Verschlüsselung."
169
+
170
+ #: smtp.php:202
171
+ msgid "Use SSL encryption."
172
+ msgstr "SSL Verschlüsselung verwenden."
173
+
174
+ #: smtp.php:204
175
+ msgid ""
176
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
177
+ "is the recommended option."
178
+ msgstr ""
179
+ "TLS Verschlüsselung verwenden. Nicht identisch mit STARTTLS. Meist wird SSL "
180
+ "empfohlen."
181
+
182
+ #: smtp.php:208
183
+ msgid "Authentication"
184
+ msgstr "Authentifizerung"
185
+
186
+ #: smtp.php:211
187
+ msgid "No: Do not use SMTP authentication."
188
+ msgstr "Nein: Authentifizerung nicht verwenden."
189
+
190
+ #: smtp.php:213
191
+ msgid "Yes: Use SMTP authentication."
192
+ msgstr "Ja: Authentifizerung verwenden."
193
+
194
+ #: smtp.php:214
195
+ msgid "If this is set to no, the values below are ignored."
196
+ msgstr "Falls nein gesetzt ist, werden die folgenden Eingaben ignoriert."
197
+
198
+ #: smtp.php:218 importer.php:830 import-users-from-csv-with-meta.php:52
199
+ #: import-users-from-csv-with-meta.php:195
200
+ msgid "Username"
201
+ msgstr "Benutzername"
202
+
203
+ #: smtp.php:222 import-users-from-csv-with-meta.php:195
204
+ msgid "Password"
205
+ msgstr "Passwort"
206
+
207
+ #: smtp.php:227
208
+ msgid "Save Changes"
209
+ msgstr "Änderungen speichern"
210
+
211
+ #: smtp.php:234
212
+ msgid "Send a Test Email"
213
+ msgstr "Testemail senden"
214
+
215
+ #: smtp.php:240
216
+ msgid "To:"
217
+ msgstr "An:"
218
+
219
+ #: smtp.php:242
220
+ msgid ""
221
+ "Type an email address here and then click Send Test to generate a test email."
222
+ msgstr ""
223
+ "Eine Emailadresse eingeben und \"Sende Test\" klicken, um eine Testemail zu "
224
+ "erzeugen."
225
+
226
+ #: importer.php:60
227
+ msgid "Ready to registers"
228
+ msgstr "Bereit zu registrieren"
229
+
230
+ #: importer.php:61
231
+ msgid "First row represents the form of sheet"
232
+ msgstr "Erste Zeile enthält das Format der Tabelle"
233
+
234
+ #: importer.php:88
235
+ msgid "File must contain at least 2 columns: username and email"
236
+ msgstr "Mindestens 2 Spalten erforderlich: username und email"
237
+
238
+ #: importer.php:116
239
+ msgid "Inserting and updating data"
240
+ msgstr "Daten werden eingefügt und upgedated"
241
+
242
+ #: importer.php:118
243
+ msgid "Row"
244
+ msgstr "Zeile"
245
+
246
+ #: importer.php:123
247
+ msgid "Row number"
248
+ msgstr "Zeile Nummer"
249
+
250
+ #: importer.php:123
251
+ msgid "does not have the same columns than the header, we are going to skip"
252
+ msgstr "enthält nicht die gleichen Spalten wie Kopfzeile: wird übersprungen"
253
+
254
+ #: importer.php:174
255
+ msgid "Problems with ID"
256
+ msgstr "Probleme mit ID"
257
+
258
+ #: importer.php:174
259
+ msgid ""
260
+ "username is not the same in the CSV and in database, we are going to skip."
261
+ msgstr "username in CSV und Datenbank stimmen nicht überein: wird übersprungen"
262
+
263
+ #: importer.php:222
264
+ msgid "User already exists as:"
265
+ msgstr "Benutzer existiert bereits als:"
266
+
267
+ #: importer.php:222
268
+ msgid "(in this CSV file is called:"
269
+ msgstr "(in der CSV-Datei lautet er:"
270
+
271
+ #: importer.php:248
272
+ msgid "Problems with user:"
273
+ msgstr "Probleme mit Benutzer:"
274
+
275
+ #: importer.php:248
276
+ msgid ", we are going to skip. \\r\\nError: "
277
+ msgstr ", wird übersprungen. \\r\\nFehler: "
278
+
279
+ #: importer.php:368
280
+ msgid "Password has not been changed"
281
+ msgstr "Passwort nicht geändert"
282
+
283
+ #: importer.php:437
284
+ msgid "Process finished you can go"
285
+ msgstr "Vorgang abgeschlossen. Du kannst"
286
+
287
+ #: importer.php:437
288
+ msgid "here to see results"
289
+ msgstr "hier die Ergebnisse sehen"
290
+
291
+ #: importer.php:452
292
+ msgid "You are not allowed to see this content."
293
+ msgstr "Zugriff nicht erlaubt"
294
+
295
+ #: importer.php:498
296
+ msgid "Click to open/close"
297
+ msgstr "Zum Öffnen/Schließen klicken"
298
+
299
+ #: importer.php:502
300
+ msgid "Old CSV files uploaded"
301
+ msgstr "Alte CSV-Datei hochgeladen"
302
+
303
+ #: importer.php:505
304
+ msgid ""
305
+ "For security reasons you should delete this files, probably they would be "
306
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
307
+ "each file or maybe you want delete all CSV files you have uploaded:"
308
+ msgstr ""
309
+ "Aus Sicherheitsgründen sollte diese Datei gelöscht werden, da sie im "
310
+ "Internet sichtbar ist, falls ein bot oder jemand die URL entdeckt. Du kannst "
311
+ "jede Datei oder alle hochgeladenen CSV-Dateien löschen:"
312
+
313
+ #: importer.php:506
314
+ msgid "Delete all CSV files uploaded"
315
+ msgstr "Alle hochgeladenen CSV-Dateien löschen"
316
+
317
+ #: importer.php:516
318
+ msgid "Delete"
319
+ msgstr "Lösche"
320
+
321
+ #: importer.php:525
322
+ msgid ""
323
+ "File must contain at least <strong>2 columns: username and email</strong>. "
324
+ "These should be the first two columns and it should be placed <strong>in "
325
+ "this order: username and email</strong>. If there are more columns, this "
326
+ "plugin will manage it automatically."
327
+ msgstr ""
328
+ "Datei muss zumindest <strong>2 Spalten haben: username und email</strong>. "
329
+ "Diese sollten die ersten beiden Spalten sein und sie sollten in "
330
+ "<strong>dieser Reihenfolge stehen: username und email</strong>. Weitere "
331
+ "Spalten werden vom Plugin automatisch verarbeitet."
332
+
333
+ #: importer.php:526
334
+ msgid ""
335
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
336
+ "take note about capitalization, this plugin is <strong>case sensitive</"
337
+ "strong>."
338
+ msgstr ""
339
+ "Bitte lies sorgfältig, wie <strong>Passwörter gehandhabt werden</strong> und "
340
+ "beachte auch die Groß- und Kleinschreibung, Dieses Plugin ist <strong>case "
341
+ "sensitive</strong>."
342
+
343
+ #: importer.php:529 import-users-from-csv-with-meta.php:96
344
+ #: import-users-from-csv-with-meta.php:202
345
+ msgid "Import users from CSV"
346
+ msgstr "Benutzer aus CSV importieren"
347
+
348
+ #: importer.php:539
349
+ msgid "Update existing users?"
350
+ msgstr "Bestehende Benutzer updaten?"
351
+
352
+ #: importer.php:542 importer.php:571
353
+ msgid "Yes"
354
+ msgstr "Ja"
355
+
356
+ #: importer.php:543 importer.php:570
357
+ msgid "No"
358
+ msgstr "Nein"
359
+
360
+ #: importer.php:549 importer.php:1077
361
+ msgid "Role"
362
+ msgstr "Role"
363
+
364
+ #: importer.php:562
365
+ msgid ""
366
+ "If you choose more than one role, the roles would be assigned correctly but "
367
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
368
+ "role-editor/\">User Role Editor</a> to manage them."
369
+ msgstr ""
370
+ "Wird mehr als eine Role gewählt, so werden die Roles korrekt zugewiesen, "
371
+ "aber du solltest ein Plugin wie den <a href=\"https://wordpress.org/plugins/"
372
+ "user-role-editor/\">User Role Editor</a> zur Bearbeitung verwenden."
373
+
374
+ #: importer.php:567
375
+ msgid "Update roles for existing users?"
376
+ msgstr "Roles für bestehende Benutzer upaten?"
377
+
378
+ #: importer.php:577
379
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
380
+ msgstr "CSV Datei <span class=\"description\">(erforderlich)</span></label>"
381
+
382
+ #: importer.php:581
383
+ msgid "<em>or you can choose directly a file from your host,"
384
+ msgstr "<em>oder direkt eine Datei vom Host wählen,"
385
+
386
+ #: importer.php:581 importer.php:585
387
+ msgid "click here"
388
+ msgstr "hier klicken"
389
+
390
+ #: importer.php:584 importer.php:1038 importer.php:1103
391
+ msgid "You have to introduce the path to file, i.e.:"
392
+ msgstr "Du musst den Pfad zur Datei angeben, d.h:"
393
+
394
+ #: importer.php:585
395
+ msgid "or you can upload it directly from your PC"
396
+ msgstr "oder direkt vom PC hochladen"
397
+
398
+ #: importer.php:591
399
+ msgid "What should the plugin do with empty cells?"
400
+ msgstr "Was soll mit leeren Zellen geschehen?"
401
+
402
+ #: importer.php:594
403
+ msgid "Leave the old value for this metadata"
404
+ msgstr "Werte für alte Metadaten behalten"
405
+
406
+ #: importer.php:595
407
+ msgid "Delete the metadata"
408
+ msgstr "Metadaten löschen"
409
+
410
+ #: importer.php:621
411
+ msgid "BuddyPress users"
412
+ msgstr "BuddyPress Benutzer"
413
+
414
+ #: importer.php:622
415
+ msgid ""
416
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
417
+ "will check, before import, which fields are defined in BuddyPress and will "
418
+ "assign it in the update. You can use this fields:"
419
+ msgstr ""
420
+ "Du kannst jedes Profil von BuddyPress einfügen, indem du den name als Header "
421
+ "verwendest. Das Plugin prüft vor dem Import, welche Felder in BuddyPress "
422
+ "definiert sind und weist sie beim Update zu. Du kannst diese Felder "
423
+ "verwenden:"
424
+
425
+ #: importer.php:626
426
+ msgid ""
427
+ "Remember that all date fields have to be imported using a format like this: "
428
+ "2016-01-01 00:00:00"
429
+ msgstr ""
430
+ "Alle zu importierenden Datumsfelder müssen ein solches Format haben: "
431
+ "2016-01-01 00:00:00"
432
+
433
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
434
+ msgid "Only for"
435
+ msgstr "Nur für"
436
+
437
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
438
+ msgid "users"
439
+ msgstr "Benutzer"
440
+
441
+ #: importer.php:640
442
+ msgid "Do not activate users"
443
+ msgstr "Benutzer nicht aktivieren"
444
+
445
+ #: importer.php:641
446
+ msgid "Activate users when they are being imported"
447
+ msgstr "Benutzer beim Import aktivieren"
448
+
449
+ #: importer.php:644
450
+ msgid "WP Members"
451
+ msgstr "WP Members"
452
+
453
+ #: importer.php:654
454
+ msgid "Approve users at the same time is being created"
455
+ msgstr "Benutzer zur gelichen Zeit approbieren"
456
+
457
+ #: importer.php:657
458
+ msgid "Do not approve users"
459
+ msgstr "Benutzer nicht approbieren"
460
+
461
+ #: importer.php:658
462
+ msgid "Approve users when they are being imported"
463
+ msgstr "Benutzer beim Import approbieren"
464
+
465
+ #: importer.php:661
466
+ msgid "New User Approve"
467
+ msgstr "Neue Benutzer approbieren"
468
+
469
+ #: importer.php:671
470
+ msgid "Repeated email in different users?"
471
+ msgstr "Wiederhole email bei verschiedenen Benutzern?"
472
+
473
+ #: importer.php:674
474
+ msgid "Not allowed"
475
+ msgstr "Nicht erlaubt"
476
+
477
+ #: importer.php:675
478
+ msgid "Allowed"
479
+ msgstr "Erlaubt"
480
+
481
+ #: importer.php:677
482
+ msgid "Allow Multiple Accounts"
483
+ msgstr "Erlaube mehrfache Accounts"
484
+
485
+ #: importer.php:677
486
+ msgid ""
487
+ "Allow multiple user accounts to be created having the same email address."
488
+ msgstr "Mehrfache Accounts mit der gleichen Emailadresse erlauben."
489
+
490
+ #: importer.php:686
491
+ msgid "WordPress Access Areas is activated"
492
+ msgstr "WordPress Access Areas aktiviert"
493
+
494
+ #: importer.php:688
495
+ msgid "As user of"
496
+ msgstr "Ein Benutzer von"
497
+
498
+ #: importer.php:688
499
+ msgid "WordPress Access Areas"
500
+ msgstr "WordPress Access Areas"
501
+
502
+ #: importer.php:688
503
+ msgid "you can use the Access Areas created"
504
+ msgstr "Verwende erstellte Access Areas"
505
+
506
+ #: importer.php:688 importer.php:938
507
+ msgid "here"
508
+ msgstr "hier "
509
+
510
+ #: importer.php:688
511
+ msgid ""
512
+ "and use this areas in your own CSV file. Please use the column name "
513
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
514
+ "you have used"
515
+ msgstr ""
516
+ "und verwendie sie in deiner CSV Datei. Verwende den Spaltennamen <strong>wp-"
517
+ "access-areas</strong> und in jeder Zeile den <strong>verwendeten Namen"
518
+
519
+ #: importer.php:688
520
+ msgid ", like this ones:"
521
+ msgstr ", so wie hier:"
522
+
523
+ #: importer.php:697
524
+ msgid ""
525
+ "If you leave this cell empty for some user or the access area indicated "
526
+ "doesn't exist, user won't be assigned to any access area. You can choose "
527
+ "more than one area for each user using pads between them in the same row, i."
528
+ "e.: "
529
+ msgstr ""
530
+ "Wenn diese Zelle leer ist oder die angegebene access area nicht existiert, "
531
+ "wird der Benutzer keiner access area zugeordnet. Für jeden Benutzer kann "
532
+ "mehr als eine area gewählt werden, indem in derselben Zeile pads gesetzt "
533
+ "werden, d.h."
534
+
535
+ #: importer.php:704
536
+ msgid "Send mail"
537
+ msgstr "Mail senden"
538
+
539
+ #: importer.php:706
540
+ msgid "Do you wish to send a mail with credentials and other data?"
541
+ msgstr "Möchten Sie eine Mail mit den Zugangsdaten senden?"
542
+
543
+ #: importer.php:706 importer.php:707
544
+ msgid "yes"
545
+ msgstr "ja"
546
+
547
+ #: importer.php:707
548
+ msgid ""
549
+ "Do you wish to send this mail also to users that are being updated? (not "
550
+ "only to the one which are being created)"
551
+ msgstr ""
552
+ "Soll diese Mail auch an Benutzer gesendet werden, die upgedated wurden (also "
553
+ "nicht nur neu angelegte)"
554
+
555
+ #: importer.php:715
556
+ msgid "Start importing"
557
+ msgstr "Import beginnen"
558
+
559
+ #: importer.php:723
560
+ msgid "Please choose a file"
561
+ msgstr "Bitte Datei wählen"
562
+
563
+ #: importer.php:728
564
+ msgid "Please enter a path to the file"
565
+ msgstr "Bitte Pfad zur Datei angeben"
566
+
567
+ #: importer.php:733
568
+ msgid "Please select a role"
569
+ msgstr "Bitte eine Role auswählen"
570
+
571
+ #: importer.php:740
572
+ msgid "Are you sure to delete this file?"
573
+ msgstr "Diese Datei löschen?"
574
+
575
+ #: importer.php:749
576
+ msgid "There were problems deleting the file, please check file permissions"
577
+ msgstr "Problem beim Löschen der Datei, bitte Berechtigungen prüfen"
578
+
579
+ #: importer.php:751
580
+ msgid "File successfully deleted"
581
+ msgstr "Datei erfolgreich gelöscht"
582
+
583
+ #: importer.php:759
584
+ msgid ""
585
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
586
+ "other plugins."
587
+ msgstr ""
588
+ "Wirklich ALLE CSV-Dateien löschen? Es könnten auch CSV-Dateien von anderen "
589
+ "Plugins dabei sein."
590
+
591
+ #: importer.php:767
592
+ msgid "There were problems deleting the files, please check files permissions"
593
+ msgstr "Problem beim Löschen der Datei, bitte Berechtigungen prüfen"
594
+
595
+ #: importer.php:769
596
+ msgid "Files successfully deleted"
597
+ msgstr "Dateien erfolgreich gelöscht"
598
+
599
+ #: importer.php:794
600
+ msgid "Custom columns loaded"
601
+ msgstr "Benutzerdefinierte Spalten geladen"
602
+
603
+ #: importer.php:798
604
+ msgid "Columns loaded in previous files"
605
+ msgstr "Benutzerdefinierte Spalten von früheren Dateien"
606
+
607
+ #: importer.php:799
608
+ msgid ""
609
+ "(if you load another CSV with different columns, the new ones will replace "
610
+ "this list)"
611
+ msgstr ""
612
+ "(beim Laden einer anderen CSV-Datei mit unterschiedlichen Spalten ersetzen "
613
+ "die neuen Spalten diese Liste)"
614
+
615
+ #: importer.php:808
616
+ msgid "There is no columns loaded yet"
617
+ msgstr "Noch keine Spalten geladen"
618
+
619
+ #: importer.php:823 import-users-from-csv-with-meta.php:202
620
+ msgid "Documentation"
621
+ msgstr "Dokumentation"
622
+
623
+ #: importer.php:827
624
+ msgid "Columns position"
625
+ msgstr "Spaltenposition"
626
+
627
+ #: importer.php:828
628
+ msgid ""
629
+ "(Documents should look like the one presented into screenshot. Remember you "
630
+ "should fill the first two columns with the next values)"
631
+ msgstr ""
632
+ "(Dateien sollten so aussehen wie die im Screenshot. Die ersten beiden "
633
+ "Spalten sollten mit folgenden Werten gefüllt sein)"
634
+
635
+ #: importer.php:831
636
+ msgid "Email"
637
+ msgstr "Email"
638
+
639
+ #: importer.php:833
640
+ msgid ""
641
+ "(The next columns are totally customizable and you can use whatever you "
642
+ "want. All rows must contains same columns)"
643
+ msgstr ""
644
+ "(Die folgenden Spalten sind benutzerdefiniert und können für beliebige "
645
+ "Zwecke verwendet werden. Alle Zeilen müssen jedoch dieselben Spalten haben)"
646
+
647
+ #: importer.php:834
648
+ msgid "(User profile will be adapted to the kind of data you have selected)"
649
+ msgstr "(Benutzerprofile werden entsprechend der gewählten Daten angepasst)"
650
+
651
+ #: importer.php:835
652
+ msgid ""
653
+ "(If you want to disable the extra profile information, please deactivate "
654
+ "this plugin after make the import)"
655
+ msgstr ""
656
+ "(Um die zusätzlichen Profilinformationen inaktiv zu setzen, deaktivieren Sie "
657
+ "bitte dieses Plugin nach dem Import)"
658
+
659
+ #: importer.php:839
660
+ msgid "id"
661
+ msgstr "id"
662
+
663
+ #: importer.php:840
664
+ msgid ""
665
+ "You can use a column called id in order to make inserts or updates of an "
666
+ "user using the ID used by WordPress in the wp_users table. We have two "
667
+ "different cases:"
668
+ msgstr ""
669
+ "Eine Spalte mit der Bezeichnung \"id\" kann verwendet werden, um Einfügen "
670
+ "oder Update eines Benutzers mittels der ID in der wp_users Tabelle zu "
671
+ "steuern. Zwei Möglichkeiten:"
672
+
673
+ #: importer.php:842
674
+ msgid ""
675
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
676
+ "inserted"
677
+ msgstr ""
678
+ "Wenn die id <strong>nicht in der Benutzertabelle existiert</strong>, wird "
679
+ "der Benutzer hinzugefügt."
680
+
681
+ #: importer.php:843
682
+ msgid ""
683
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
684
+ "it will update the data, if not, it ignores the cell to avoid problems"
685
+ msgstr ""
686
+ "Wenn die id <strong>existiert</strong>, prüft das Plugin, ob der username "
687
+ "identisch ist. Wenn ja, werden die Daten aktualisiert, wenn nein, wird die "
688
+ "Zelle ignoriert, um Probleme zu vermeiden."
689
+
690
+ #: importer.php:848
691
+ msgid "Passwords"
692
+ msgstr "Passwörter"
693
+
694
+ #: importer.php:849
695
+ msgid ""
696
+ "A string that contains user passwords. We have different options for this "
697
+ "case:"
698
+ msgstr "Ein String, der Bentuzerpassworte enthält. Mehrere Möglichkeiten:"
699
+
700
+ #: importer.php:851
701
+ msgid ""
702
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
703
+ "be generated automatically"
704
+ msgstr ""
705
+ "Wird <strong>keine Passwortspalte</strong> gesetzt, dann werden die "
706
+ "Passworte automatisch generiert"
707
+
708
+ #: importer.php:852
709
+ msgid ""
710
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
711
+ "password won't be updated; if cell has a value, it will be used"
712
+ msgstr ""
713
+ "Wird <strong>eine Passwortspalte gesetzt</strong>, dann gilt: Ist der Inhalt "
714
+ "leer, werden Passwörter nicht verändert, enthält sie einen Wert, wird "
715
+ "dieser benutzt"
716
+
717
+ #: importer.php:857
718
+ msgid "WordPress default profile data"
719
+ msgstr "WordPress Standardprofildaten"
720
+
721
+ #: importer.php:858
722
+ msgid ""
723
+ "You can use those labels if you want to set data adapted to the WordPress "
724
+ "default user columns (the ones who use the function"
725
+ msgstr ""
726
+ "Diese Bezeichnungen können verwendet werden, um Daten in den Standardspalten "
727
+ "der WordPress Bneutzerdatei zu setzen (benutzen die Funktion"
728
+
729
+ #: importer.php:860
730
+ msgid ""
731
+ "A string that contains a URL-friendly name for the user. The default is the "
732
+ "user's username."
733
+ msgstr ""
734
+ "String, der einen URL-fähigen Namen für den Benutzer enthält. Normalerweise "
735
+ "der username."
736
+
737
+ #: importer.php:861
738
+ msgid "A string containing the user's URL for the user's web site."
739
+ msgstr "String, der die URL des Benutzers für seine Webseite enthält."
740
+
741
+ #: importer.php:862
742
+ msgid ""
743
+ "A string that will be shown on the site. Defaults to user's username. It is "
744
+ "likely that you will want to change this, for both appearance and security "
745
+ "through obscurity (that is if you don't use and delete the default admin "
746
+ "user)."
747
+ msgstr ""
748
+ "String, der angezeigt wird. Vorgabe ist der username. Sollte geändert "
749
+ "werden, sowohl für das Erscheinungsbild als auch zur Sicherheit durch "
750
+ "Verschleierung (wenn der vorgegebene Adminbenutzer nicht verwendet und "
751
+ "gelöscht wird)."
752
+
753
+ #: importer.php:863
754
+ msgid "The user's nickname, defaults to the user's username."
755
+ msgstr "Nickname des Benutzers, Vorgabe ist der username."
756
+
757
+ #: importer.php:864
758
+ msgid "The user's first name."
759
+ msgstr "Vorname des Benutzers."
760
+
761
+ #: importer.php:865
762
+ msgid "The user's last name."
763
+ msgstr "Nachname des Benutzers."
764
+
765
+ #: importer.php:866
766
+ msgid "A string containing content about the user."
767
+ msgstr "Text mit Informationen über den Benutzer."
768
+
769
+ #: importer.php:867
770
+ msgid "User's Jabber account."
771
+ msgstr "Jabber account des Benutzers."
772
+
773
+ #: importer.php:868
774
+ msgid "User's AOL IM account."
775
+ msgstr "AOL IM account des Benutzers."
776
+
777
+ #: importer.php:869
778
+ msgid "User's Yahoo IM account."
779
+ msgstr "Yahoo IM account des Benutzers."
780
+
781
+ #: importer.php:870
782
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
783
+ msgstr "Verwende das WordPress-Format für diese Art der Daten Y-m-d H:i:s"
784
+
785
+ #: importer.php:877
786
+ msgid "WooCommerce is activated"
787
+ msgstr "WooCommerce aktiviert"
788
+
789
+ #: importer.php:878
790
+ msgid ""
791
+ "You can use those labels if you want to set data adapted to the WooCommerce "
792
+ "default user columns"
793
+ msgstr ""
794
+ "Diese Bezeichnungen können verwendet werden, um Daten in den Standardspalten "
795
+ "der WooCommerce Bneutzerdatei zu setzen"
796
+
797
+ #: importer.php:906
798
+ msgid "Important notice"
799
+ msgstr "Wichtige Notiz"
800
+
801
+ #: importer.php:907
802
+ msgid ""
803
+ "You can upload as many files as you want, but all must have the same "
804
+ "columns. If you upload another file, the columns will change to the form of "
805
+ "last file uploaded."
806
+ msgstr ""
807
+ "Es können beliebig viele Dateien hochgeladen werden, aber alle müssen die "
808
+ "gleichen Spalten haben. Wenn eine andere Datei hochgeladen wird, werden die "
809
+ "Spalten an die letzte Datei angepasst."
810
+
811
+ #: importer.php:910
812
+ msgid "Any question about it"
813
+ msgstr "Fragen dazu"
814
+
815
+ #: importer.php:913
816
+ msgid "Free support (in WordPress forums):"
817
+ msgstr "kosenloser Support (im WordPress Forum):"
818
+
819
+ #: importer.php:914
820
+ msgid "Premium support (with a quote):"
821
+ msgstr "Premium Support (kostenpflichtig):"
822
+
823
+ #: importer.php:919
824
+ msgid "Example"
825
+ msgstr "Beispiel"
826
+
827
+ #: importer.php:920
828
+ msgid "Download this"
829
+ msgstr "Lade diese"
830
+
831
+ #: importer.php:920
832
+ msgid "file"
833
+ msgstr "Datei"
834
+
835
+ #: importer.php:920
836
+ msgid "to test"
837
+ msgstr "zum Testen"
838
+
839
+ #: importer.php:936 import-users-from-csv-with-meta.php:202
840
+ msgid "Mail options"
841
+ msgstr "Mail Optionen"
842
+
843
+ #: importer.php:938
844
+ msgid "You can set your own SMTP and other mail details"
845
+ msgstr "Eigene SMTP Optionen und andere Details können gesetzt werden"
846
+
847
+ #: importer.php:943
848
+ msgid "WordPress automatic emails users updated"
849
+ msgstr "Automatische WordPress Emails angepasst"
850
+
851
+ #: importer.php:947
852
+ msgid "Send automatic WordPress emails?"
853
+ msgstr "Automatische WordPress Emails senden?"
854
+
855
+ #: importer.php:951
856
+ msgid ""
857
+ "Deactivate WordPress automatic email when an user is updated or his "
858
+ "password is changed"
859
+ msgstr ""
860
+ "Automatische WordPress Emails deaktivieren, wenn ein Benutzer upgedatet oder "
861
+ "sein Passwort geändert wird"
862
+
863
+ #: importer.php:952
864
+ msgid ""
865
+ "Activate WordPress automatic email when an user is updated or his password "
866
+ "is changed"
867
+ msgstr ""
868
+ "Automatische WordPress Emails aktivieren, wenn ein Benutzer upgedatet oder "
869
+ "sein Passwort geändert wird"
870
+
871
+ #: importer.php:954
872
+ msgid ""
873
+ "When you update an user or change his password, WordPress prepare and send "
874
+ "automatic email, you can deactivate it here."
875
+ msgstr ""
876
+ "Beim Update eines Benutzers oder einer Passwortänderung sendet WordPress "
877
+ "automatisch eine Mail. Das kann hier deaktivert werden"
878
+
879
+ #: importer.php:962
880
+ msgid "Customize the email that can be sent when importing users"
881
+ msgstr "Anpassen der Email, die beim Import gesendet wird"
882
+
883
+ #: importer.php:964
884
+ msgid "Mail subject :"
885
+ msgstr "Betreff:"
886
+
887
+ #: importer.php:972
888
+ msgid "username to login"
889
+ msgstr "Loginname"
890
+
891
+ #: importer.php:973
892
+ msgid "user password"
893
+ msgstr "Passwort"
894
+
895
+ #: importer.php:974
896
+ msgid "current site login url"
897
+ msgstr "URL für Login"
898
+
899
+ #: importer.php:975
900
+ msgid "lost password url"
901
+ msgstr "URL für Passwort vergessen"
902
+
903
+ #: importer.php:976
904
+ msgid "password reset url"
905
+ msgstr "URL für Passwort zurücksetzen"
906
+
907
+ #: importer.php:977
908
+ msgid "user email"
909
+ msgstr "Benutzer Email"
910
+
911
+ #: importer.php:978
912
+ msgid ""
913
+ "You can also use any WordPress user standard field or an own metadata, if "
914
+ "you have used it in your CSV. For example, if you have a first_name column, "
915
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
916
+ msgstr ""
917
+ "Jedes Standardfeld der WordPress Benutzerdatei und jedes eigene Metadatafeld "
918
+ "kann verwendet werden, sofern es in der CSV-Datei enthalten ist. Wenn eine "
919
+ "Spalte first_name vorhanden ist, kann **first_name** verwendet werden oder "
920
+ "irgend ein Metafeld wie zB **my_custom_meta**"
921
+
922
+ #: importer.php:1029
923
+ msgid "Execute an import of users periodically"
924
+ msgstr "Benutzerimport periodisch ausführen"
925
+
926
+ #: importer.php:1035
927
+ msgid "Path of file that are going to be imported"
928
+ msgstr "Pfad zu den Dateien, die importiert werden sollen"
929
+
930
+ #: importer.php:1037 importer.php:1102
931
+ msgid "Insert complete path to the file"
932
+ msgstr "Kompletten Pfad angeben"
933
+
934
+ #: importer.php:1042
935
+ msgid "Period"
936
+ msgstr "Wiederholung"
937
+
938
+ #: importer.php:1045
939
+ msgid "Hourly"
940
+ msgstr "Stündlich"
941
+
942
+ #: importer.php:1046
943
+ msgid "Twicedaily"
944
+ msgstr "Zweimal pro Tag"
945
+
946
+ #: importer.php:1047
947
+ msgid "Daily"
948
+ msgstr "Täglich"
949
+
950
+ #: importer.php:1049
951
+ msgid "How often the event should reoccur?"
952
+ msgstr "Wie oft soll der Import stattfinden?"
953
+
954
+ #: importer.php:1053
955
+ msgid "Activate periodical import?"
956
+ msgstr "Periodischen Import aktivieren?"
957
+
958
+ #: importer.php:1059
959
+ msgid "Send mail when using periodical import?"
960
+ msgstr "Email nach periodischem Import versenden?"
961
+
962
+ #: importer.php:1065
963
+ msgid "Send mail also to users that are being updated?"
964
+ msgstr "Email auch an Benutzer, die adaptiert wurden?"
965
+
966
+ #: importer.php:1071
967
+ msgid "Delete users that are not present in the CSV?"
968
+ msgstr "Benutzer, die nicht in der CSV-Datei enthalten sind, löschen?"
969
+
970
+ #: importer.php:1091
971
+ msgid "Which role would be used to import users?"
972
+ msgstr "Welche Role soll beim Import zugewiesen werden?"
973
+
974
+ #: importer.php:1095
975
+ msgid "Move file after import?"
976
+ msgstr "Datei nach Import verschieben?"
977
+
978
+ #: importer.php:1108
979
+ msgid "Last actions of schedule task"
980
+ msgstr "Letzte zeitgesteuerte Ausführung"
981
+
982
+ #: importer.php:1114
983
+ msgid "Mail sending"
984
+ msgstr "Mailversand"
985
+
986
+ #: importer.php:1115
987
+ msgid ""
988
+ "Please take care: for this option, cron import, mail sending is not "
989
+ "available in this version (if you need it"
990
+ msgstr ""
991
+ "Achtung: Für diiese Option, zeitgesteuerter Import, ist die Funktion "
992
+ "Mailversand in dieser Version nicht verfügbar (wenn sie benötigt wird"
993
+
994
+ #: importer.php:1115
995
+ msgid "talk with us"
996
+ msgstr "kontaktieren Sie uns"
997
+
998
+ #: importer.php:1119
999
+ msgid "Save schedule options"
1000
+ msgstr "Zeitsteuerungsoptionen speichern"
1001
+
1002
+ #: importer.php:1126
1003
+ msgid ""
1004
+ "Are you sure to delete all users that are not present in the CSV? This "
1005
+ "action cannot be undone."
1006
+ msgstr ""
1007
+ "Wirklich alle Benutzer, die nicht in der CSV-Datei enthalten sind, löschen? "
1008
+ "Diese Aktion kann nicht zurückgenommen werden."
1009
+
1010
+ #: importer.php:1149
1011
+ msgid "Do you like it?"
1012
+ msgstr "Gefällt es Dir?"
1013
+
1014
+ #: importer.php:1152
1015
+ msgid "buy me a coffee"
1016
+ msgstr "zahl mir einen Kaffee"
1017
+
1018
+ #: importer.php:1153 importer.php:1173
1019
+ msgid "Hi! we are"
1020
+ msgstr "Hi! Wir sind"
1021
+
1022
+ #: importer.php:1153 importer.php:1173
1023
+ msgid "and"
1024
+ msgstr "und"
1025
+
1026
+ #: importer.php:1153 importer.php:1173
1027
+ msgid "from"
1028
+ msgstr "von"
1029
+
1030
+ #: importer.php:1153 importer.php:1173
1031
+ msgid "developers of this plugin."
1032
+ msgstr "Entwickler dieses Plugins."
1033
+
1034
+ #: importer.php:1154
1035
+ msgid ""
1036
+ "We have been spending many hours to develop this plugin. <br>If you like and "
1037
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
1038
+ msgstr ""
1039
+ "Wir haben viele Stunden in die Entwicklung investiert. <br>Wenn es dir "
1040
+ "gefällt, zahl uns <strong>eine Tasse Kaffee</strong>."
1041
+
1042
+ #: importer.php:1158
1043
+ msgid "PayPal – The safer, easier way to pay online."
1044
+ msgstr "PayPal – der sicherere, einfachere Weg, online zu bezahlen."
1045
+
1046
+ #: importer.php:1170
1047
+ msgid "Need help with WordPress or WooCommerce?"
1048
+ msgstr "Brauchst du Hilfe zu WordPress oder WooCommerce?"
1049
+
1050
+ #: importer.php:1174
1051
+ msgid ""
1052
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
1053
+ "send us a message to"
1054
+ msgstr ""
1055
+ "Wir arbeiten täglich mit WordPress und WooCommerce, wenn du Hilfe benötigst, "
1056
+ "beauftrage uns, sende eine Nachricht an"
1057
+
1058
+ #: import-users-from-csv-with-meta.php:51
1059
+ #: import-users-from-csv-with-meta.php:198
1060
+ msgid "Welcome to"
1061
+ msgstr "Willkommen bei"
1062
+
1063
+ #: import-users-from-csv-with-meta.php:52
1064
+ #: import-users-from-csv-with-meta.php:195
1065
+ msgid "Welcome,"
1066
+ msgstr "Willkommen,"
1067
+
1068
+ #: import-users-from-csv-with-meta.php:52
1069
+ #: import-users-from-csv-with-meta.php:195
1070
+ msgid "Your data to login in this site is:"
1071
+ msgstr "Deine Daten zum Login sind:"
1072
+
1073
+ #: import-users-from-csv-with-meta.php:52
1074
+ #: import-users-from-csv-with-meta.php:195
1075
+ msgid "URL to login"
1076
+ msgstr "URL zum Login"
1077
+
1078
+ #: import-users-from-csv-with-meta.php:96
1079
+ msgid "Insert users massively (CSV)"
1080
+ msgstr "Massenimport von Benutzers (CSV)"
1081
+
1082
+ #: import-users-from-csv-with-meta.php:97
1083
+ msgid "SMTP Configuration"
1084
+ msgstr "SMTP Konfiguration"
1085
+
1086
+ #: import-users-from-csv-with-meta.php:103
1087
+ #: import-users-from-csv-with-meta.php:202
1088
+ msgid "Donate"
1089
+ msgstr "Spenden"
1090
+
1091
+ #: import-users-from-csv-with-meta.php:104
1092
+ msgid "Premium support"
1093
+ msgstr "Premium Support"
1094
+
1095
+ #: import-users-from-csv-with-meta.php:105
1096
+ msgid "Premium plugins"
1097
+ msgstr "Premium Plugins"
1098
+
1099
+ #: import-users-from-csv-with-meta.php:202
1100
+ msgid "Customs columns loaded"
1101
+ msgstr "Benutzerdefinierte Spalten geladen"
1102
+
1103
+ #: import-users-from-csv-with-meta.php:202
1104
+ msgid "Cron import"
1105
+ msgstr "Zeitgesteuerter Import"
1106
+
1107
+ #: import-users-from-csv-with-meta.php:202
1108
+ msgid "Shop"
1109
+ msgstr "Shop"
1110
+
1111
+ #: import-users-from-csv-with-meta.php:202
1112
+ msgid "Hire an expert"
1113
+ msgstr "Beauftrage einen Experten"
1114
+
1115
+ #: import-users-from-csv-with-meta.php:242
1116
+ msgid "Error, we cannot find the file"
1117
+ msgstr "Fehler, die Datei wurde nicht gefunden"
1118
+
1119
+ #: import-users-from-csv-with-meta.php:286
1120
+ msgid "Unable to write to directory. Is this directory writable by the server?"
1121
+ msgstr ""
1122
+ "Verzeichnis ist nicht beschreibbar. Ist das Verzeichnis durch den Server "
1123
+ "beschreibbar?"
1124
+
1125
+ #: import-users-from-csv-with-meta.php:294
1126
+ msgid "Error, the file"
1127
+ msgstr "Fehler, die Datei"
1128
+
1129
+ #: import-users-from-csv-with-meta.php:294
1130
+ msgid "could not moved to"
1131
+ msgstr "konnte nicht verschoben werden nach"
1132
+
1133
+ #: import-users-from-csv-with-meta.php:323
1134
+ msgid "Mail template updated correctly"
1135
+ msgstr "Mailvorlage korrekt angepasst"
1136
+
1137
+ #: import-users-from-csv-with-meta.php:370
1138
+ msgid "Settings updated correctly"
1139
+ msgstr "Einstellungen korrekt angepasst"
1140
+
1141
+ #: import-users-from-csv-with-meta.php:376
1142
+ msgid "Import cron task starts at"
1143
+ msgstr "Zeitgesteuerter Import beginnt um"
1144
+
1145
+ #: import-users-from-csv-with-meta.php:397
1146
+ msgid "--Finished at"
1147
+ msgstr "--Beendet um"
1148
+
1149
+ #: import-users-from-csv-with-meta.php:506
1150
+ msgid "You are not an adminstrator"
1151
+ msgstr "Du bist kein Administrator"
trunk/languages/import-users-from-csv-with-meta-fr_FR.mo ADDED
Binary file
trunk/languages/import-users-from-csv-with-meta-fr_FR.po ADDED
@@ -0,0 +1,1188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
7
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
8
+ "POT-Creation-Date: 2016-11-05 10:32+0100\n"
9
+ "PO-Revision-Date: \n"
10
+ "Language-Team: Your Team <translations@example.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
20
+ "X-Poedit-Basepath: ..\n"
21
+ "X-Generator: Poedit 1.8.7\n"
22
+ "Last-Translator: FreePixel <contact@freepixel.net>\n"
23
+ "Language: fr_FR\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: smtp.php:26 smtp.php:245
27
+ msgid "Send Test"
28
+ msgstr "Envoyer un courriel de test"
29
+
30
+ #: smtp.php:40
31
+ msgid "Test mail to "
32
+ msgstr "Tester le courriel pour"
33
+
34
+ #: smtp.php:41
35
+ msgid ""
36
+ "This is a test email generated by the Import User From CSV With Meta "
37
+ "WordPress plugin."
38
+ msgstr ""
39
+ "Il s'agit d'un test de courrier électronique généré par l'utilisateur "
40
+ "d'importation de CSV avec l’extension Meta WordPress."
41
+
42
+ #: smtp.php:79
43
+ msgid "Message sent successfully"
44
+ msgstr "Message envoyé avec succès"
45
+
46
+ #: smtp.php:83
47
+ msgid "Test Message Sent"
48
+ msgstr "Message de test envoyé"
49
+
50
+ #: smtp.php:84
51
+ msgid "The result was:"
52
+ msgstr "Le résultat est :"
53
+
54
+ #: smtp.php:86
55
+ msgid "The full debugging output is shown below:"
56
+ msgstr "La sortie de débogage complète est montrée ci-dessous :"
57
+
58
+ #: smtp.php:88
59
+ msgid "The SMTP debugging output is shown below:"
60
+ msgstr "La sortie de débogage SMTP est illustrée ci-dessous :"
61
+
62
+ #: smtp.php:119
63
+ msgid "Import User From CSV With Meta - SMTP server options"
64
+ msgstr ""
65
+ "Importer un utilisateur à partir de CSV avec Meta - Options du serveur SMTP"
66
+
67
+ #: smtp.php:123
68
+ msgid "Global options"
69
+ msgstr "Options globales"
70
+
71
+ #: smtp.php:124
72
+ msgid ""
73
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
74
+ "settings."
75
+ msgstr ""
76
+ "Voulez-vous utiliser vos propres paramètres SMTP pour cette extension ou les "
77
+ "paramètres WordPress."
78
+
79
+ #: smtp.php:128
80
+ msgid "Settings"
81
+ msgstr "Paramètres"
82
+
83
+ #: smtp.php:131
84
+ msgid "Use plugin SMTP settings"
85
+ msgstr "Utiliser les paramètres SMTP de l’extension"
86
+
87
+ #: smtp.php:133
88
+ msgid "Use this settings to send mail."
89
+ msgstr "Utilisez ces paramètres pour envoyer les courriels."
90
+
91
+ #: smtp.php:135
92
+ msgid "Use WordPress general settings to send mail."
93
+ msgstr "Utilisez les paramètres généraux WordPress pour envoyer les courriels."
94
+
95
+ #: smtp.php:143
96
+ msgid "From Email"
97
+ msgstr "Courriel source de l’envoi"
98
+
99
+ #: smtp.php:145
100
+ msgid ""
101
+ "You can specify the email address that emails should be sent from. If you "
102
+ "leave this blank, the default email will be used."
103
+ msgstr ""
104
+ "Vous pouvez spécifier l'adresse courriel à laquelle les messages doivent "
105
+ "être envoyés. Si vous laissez cette case vide, le courriel admin par défaut "
106
+ "sera utilisé."
107
+
108
+ #: smtp.php:145
109
+ msgid ""
110
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
111
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
112
+ "email@domain.com&gt; in this field."
113
+ msgstr ""
114
+ "<strong>Remarque :</strong> Vous semblez utiliser une version de WordPress < "
115
+ "2.3. Veuillez ignorer le champ de nom et entrez le nom&lt;email@domaine."
116
+ "com&gt; dans ce champ."
117
+
118
+ #: smtp.php:148
119
+ msgid "From Name"
120
+ msgstr "Nom de l’envoyeur"
121
+
122
+ #: smtp.php:150
123
+ msgid ""
124
+ "You can specify the name that emails should be sent from. If you leave this "
125
+ "blank, the emails will be sent from WordPress."
126
+ msgstr ""
127
+ "Vous pouvez spécifier le nom duquel les courriels doivent être envoyés. Si "
128
+ "vous laissez ce champ vide, les courriels seront envoyés à partir de nom "
129
+ "admin WordPress."
130
+
131
+ #: smtp.php:156 smtp.php:159
132
+ msgid "Mailer"
133
+ msgstr "Mailer"
134
+
135
+ #: smtp.php:161
136
+ msgid "Send emails of this plugin via SMTP."
137
+ msgstr "Envoyez des emails de cette extension via SMTP."
138
+
139
+ #: smtp.php:163
140
+ msgid "Use the PHP mail() function to send emails."
141
+ msgstr "Utilisez la fonction PHP mail() pour envoyer des courriels."
142
+
143
+ #: smtp.php:171 smtp.php:174
144
+ msgid "Return Path"
145
+ msgstr "Chemin de retour"
146
+
147
+ #: smtp.php:176
148
+ msgid "Set the return-path to match the From Email"
149
+ msgstr "Définissez le courriel pour correspondre à De"
150
+
151
+ #: smtp.php:182
152
+ msgid "SMTP Options"
153
+ msgstr "Options SMTP"
154
+
155
+ #: smtp.php:183
156
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
157
+ msgstr ""
158
+ "Ces options s'appliquent uniquement si vous avez choisi d'envoyer des "
159
+ "messages par SMTP ci-dessus."
160
+
161
+ #: smtp.php:187
162
+ msgid "SMTP Host"
163
+ msgstr "Hôte SMTP"
164
+
165
+ #: smtp.php:191
166
+ msgid "SMTP Port"
167
+ msgstr "Port SMTP"
168
+
169
+ #: smtp.php:195 smtp.php:198
170
+ msgid "Encryption"
171
+ msgstr "Chiffrement"
172
+
173
+ #: smtp.php:200
174
+ msgid "No encryption."
175
+ msgstr "Pas de chiffrement."
176
+
177
+ #: smtp.php:202
178
+ msgid "Use SSL encryption."
179
+ msgstr "Utiliser le chiffrage SSL."
180
+
181
+ #: smtp.php:204
182
+ msgid ""
183
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
184
+ "is the recommended option."
185
+ msgstr ""
186
+ "Utilisez le chiffrage TLS. Ce n'est pas la même chose que STARTTLS. Pour la "
187
+ "plupart des serveurs l'option SSL est recommandée."
188
+
189
+ #: smtp.php:208
190
+ msgid "Authentication"
191
+ msgstr "Authentification"
192
+
193
+ #: smtp.php:211
194
+ msgid "No: Do not use SMTP authentication."
195
+ msgstr "Non : ne pas utiliser l'authentification SMTP."
196
+
197
+ #: smtp.php:213
198
+ msgid "Yes: Use SMTP authentication."
199
+ msgstr "Oui : utiliser l'authentification SMTP."
200
+
201
+ #: smtp.php:214
202
+ msgid "If this is set to no, the values below are ignored."
203
+ msgstr ""
204
+ "Si cette valeur est définie sur non, les valeurs ci-dessous sont ignorées."
205
+
206
+ #: smtp.php:218 importer.php:830 import-users-from-csv-with-meta.php:52
207
+ #: import-users-from-csv-with-meta.php:195
208
+ msgid "Username"
209
+ msgstr "Nom d’utilisateur"
210
+
211
+ #: smtp.php:222 import-users-from-csv-with-meta.php:195
212
+ msgid "Password"
213
+ msgstr "Mot de passe"
214
+
215
+ #: smtp.php:227
216
+ msgid "Save Changes"
217
+ msgstr "Sauvegarder les changements"
218
+
219
+ #: smtp.php:234
220
+ msgid "Send a Test Email"
221
+ msgstr "Envoyer un courriel de test"
222
+
223
+ #: smtp.php:240
224
+ msgid "To:"
225
+ msgstr "A :"
226
+
227
+ #: smtp.php:242
228
+ msgid ""
229
+ "Type an email address here and then click Send Test to generate a test email."
230
+ msgstr ""
231
+ "Entrez une adresse courriel ici, puis cliquez sur Envoyer un test pour "
232
+ "générer un courriel de test."
233
+
234
+ #: importer.php:60
235
+ msgid "Ready to registers"
236
+ msgstr "Prêt à enregistrer"
237
+
238
+ #: importer.php:61
239
+ msgid "First row represents the form of sheet"
240
+ msgstr "La première rangée représente la forme de la feuille"
241
+
242
+ #: importer.php:88
243
+ msgid "File must contain at least 2 columns: username and email"
244
+ msgstr ""
245
+ "Le fichier doit contenir au moins 2 colonnes : nom d'utilisateur et adresse "
246
+ "courriel"
247
+
248
+ #: importer.php:116
249
+ msgid "Inserting and updating data"
250
+ msgstr "Insertion et mise à jour de données"
251
+
252
+ #: importer.php:118
253
+ msgid "Row"
254
+ msgstr "Rangée"
255
+
256
+ #: importer.php:123
257
+ msgid "Row number"
258
+ msgstr "Numéro de rangée"
259
+
260
+ #: importer.php:123
261
+ msgid "does not have the same columns than the header, we are going to skip"
262
+ msgstr "n’a pas les mêmes colonnes que l'en-tête, nous allons abandonner"
263
+
264
+ #: importer.php:174
265
+ msgid "Problems with ID"
266
+ msgstr "Problèmes avec l’ID"
267
+
268
+ #: importer.php:174
269
+ msgid ""
270
+ "username is not the same in the CSV and in database, we are going to skip."
271
+ msgstr ""
272
+ "nom d'utilisateur n'est pas le même dans le CSV et dans la base de données, "
273
+ "nous allons abandonner."
274
+
275
+ #: importer.php:222
276
+ msgid "User already exists as:"
277
+ msgstr "L'utilisateur existe déjà comme :"
278
+
279
+ #: importer.php:222
280
+ msgid "(in this CSV file is called:"
281
+ msgstr "(dans ce fichier CSV est appelé :"
282
+
283
+ #: importer.php:248
284
+ msgid "Problems with user:"
285
+ msgstr "Problèmes avec l'utilisateur :"
286
+
287
+ #: importer.php:248
288
+ msgid ", we are going to skip. \\r\\nError: "
289
+ msgstr ", nous allons abandonner. \\r\\nErreur : "
290
+
291
+ #: importer.php:368
292
+ msgid "Password has not been changed"
293
+ msgstr "Le mot de passe n'a pas été modifié"
294
+
295
+ #: importer.php:437
296
+ msgid "Process finished you can go"
297
+ msgstr "Processus terminé, vous pouvez aller"
298
+
299
+ #: importer.php:437
300
+ msgid "here to see results"
301
+ msgstr "Ici pour voir les résultats"
302
+
303
+ #: importer.php:452
304
+ msgid "You are not allowed to see this content."
305
+ msgstr "Vous n'êtes pas autorisé à voir ce contenu."
306
+
307
+ #: importer.php:498
308
+ msgid "Click to open/close"
309
+ msgstr "Cliquez pour ouvrir/fermer"
310
+
311
+ #: importer.php:502
312
+ msgid "Old CSV files uploaded"
313
+ msgstr "Anciens fichiers CSV téléchargés"
314
+
315
+ #: importer.php:505
316
+ msgid ""
317
+ "For security reasons you should delete this files, probably they would be "
318
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
319
+ "each file or maybe you want delete all CSV files you have uploaded:"
320
+ msgstr ""
321
+ "Pour des raisons de sécurité, vous devez supprimer ces fichiers, ils "
322
+ "seraient probablement visibles sur Internet si un robot ou quelqu'un "
323
+ "découvre l'URL. Vous pouvez supprimer chaque fichier ou peut-être supprimer "
324
+ "tous les fichiers CSV que vous avez téléchargés :"
325
+
326
+ #: importer.php:506
327
+ msgid "Delete all CSV files uploaded"
328
+ msgstr "Supprimer tous les fichiers CSV téléchargés"
329
+
330
+ #: importer.php:516
331
+ msgid "Delete"
332
+ msgstr "Supprimer"
333
+
334
+ #: importer.php:525
335
+ msgid ""
336
+ "File must contain at least <strong>2 columns: username and email</strong>. "
337
+ "These should be the first two columns and it should be placed <strong>in "
338
+ "this order: username and email</strong>. If there are more columns, this "
339
+ "plugin will manage it automatically."
340
+ msgstr ""
341
+ "Le fichier doit contenir au moins <strong>2 colonnes : nom d'utilisateur et "
342
+ "courriel</strong>. Ceux-ci doivent être les deux premières colonnes et il "
343
+ "doivent être placé <strong>dans cet ordre : nom d'utilisateur et courriel</"
344
+ "strong>. S'il y a plus de colonnes, cette extension va les gérer "
345
+ "automatiquement."
346
+
347
+ #: importer.php:526
348
+ msgid ""
349
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
350
+ "take note about capitalization, this plugin is <strong>case sensitive</"
351
+ "strong>."
352
+ msgstr ""
353
+ "Merci de lire attentivement comment <strong>les mots de passe sont gérés</"
354
+ "strong> et prenez également note des majuscules, cette extension est "
355
+ "<strong>sensible à la casse</strong>."
356
+
357
+ #: importer.php:529 import-users-from-csv-with-meta.php:96
358
+ #: import-users-from-csv-with-meta.php:202
359
+ msgid "Import users from CSV"
360
+ msgstr "Importer des utilisateurs à partir de CSV"
361
+
362
+ #: importer.php:539
363
+ msgid "Update existing users?"
364
+ msgstr "Mettre à jour les utilisateurs existants ?"
365
+
366
+ #: importer.php:542 importer.php:571
367
+ msgid "Yes"
368
+ msgstr "Oui"
369
+
370
+ #: importer.php:543 importer.php:570
371
+ msgid "No"
372
+ msgstr "Non"
373
+
374
+ #: importer.php:549 importer.php:1077
375
+ msgid "Role"
376
+ msgstr "Rôle"
377
+
378
+ #: importer.php:562
379
+ msgid ""
380
+ "If you choose more than one role, the roles would be assigned correctly but "
381
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
382
+ "role-editor/\">User Role Editor</a> to manage them."
383
+ msgstr ""
384
+ "Si vous choisissez plus d'un rôle, les rôles seront attribués correctement, "
385
+ "mais vous devriez utiliser une extension comme <a href=\"https://wordpress."
386
+ "org/plugins/user-role-editor/\">User Role Editor</a> pour les gérer."
387
+
388
+ #: importer.php:567
389
+ msgid "Update roles for existing users?"
390
+ msgstr "Mise à jour des rôles pour les utilisateurs existants ?"
391
+
392
+ #: importer.php:577
393
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
394
+ msgstr "Fichier CSV <em>(requis)</em>"
395
+
396
+ #: importer.php:581
397
+ msgid "<em>or you can choose directly a file from your host,"
398
+ msgstr "<em>ou vous pouvez choisir directement un fichier de votre hôte,"
399
+
400
+ #: importer.php:581 importer.php:585
401
+ msgid "click here"
402
+ msgstr "cliquer ici"
403
+
404
+ #: importer.php:584 importer.php:1038 importer.php:1103
405
+ msgid "You have to introduce the path to file, i.e.:"
406
+ msgstr "Vous devez saisir le chemin d'accès au fichier, par exemple :"
407
+
408
+ #: importer.php:585
409
+ msgid "or you can upload it directly from your PC"
410
+ msgstr "ou vous pouvez le télécharger directement depuis votre ordinateur"
411
+
412
+ #: importer.php:591
413
+ msgid "What should the plugin do with empty cells?"
414
+ msgstr "Que doit faire l’extension avec les cellules vides ?"
415
+
416
+ #: importer.php:594
417
+ msgid "Leave the old value for this metadata"
418
+ msgstr "Laisser l'ancienne valeur de ces métadonnées"
419
+
420
+ #: importer.php:595
421
+ msgid "Delete the metadata"
422
+ msgstr "Supprimer les métadonnées"
423
+
424
+ #: importer.php:621
425
+ msgid "BuddyPress users"
426
+ msgstr "Utilisateurs BuddyPress"
427
+
428
+ #: importer.php:622
429
+ msgid ""
430
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
431
+ "will check, before import, which fields are defined in BuddyPress and will "
432
+ "assign it in the update. You can use this fields:"
433
+ msgstr ""
434
+ "Vous pouvez insérer n'importe quel profil de BuddyPress en utilisant son nom "
435
+ "comme en-tête. L’extension vérifiera, avant l'importation, quels champs sont "
436
+ "définis dans BuddyPress et l'affectera dans la mise à jour. Vous pouvez "
437
+ "utiliser les champs suivants :"
438
+
439
+ #: importer.php:626
440
+ msgid ""
441
+ "Remember that all date fields have to be imported using a format like this: "
442
+ "2016-01-01 00:00:00"
443
+ msgstr ""
444
+ "N'oubliez pas que tous les champs de date doivent être importés avec un "
445
+ "format comme celui-ci : 2016-01-01 00:00:00"
446
+
447
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
448
+ msgid "Only for"
449
+ msgstr "Seulement pour"
450
+
451
+ #: importer.php:628 importer.php:644 importer.php:661 importer.php:677
452
+ msgid "users"
453
+ msgstr "utilisateurs"
454
+
455
+ #: importer.php:640
456
+ msgid "Do not activate users"
457
+ msgstr "Ne pas activer les utilisateurs"
458
+
459
+ #: importer.php:641
460
+ msgid "Activate users when they are being imported"
461
+ msgstr "Activer les utilisateurs lors de leur importation"
462
+
463
+ #: importer.php:644
464
+ msgid "WP Members"
465
+ msgstr "Membres WP"
466
+
467
+ #: importer.php:654
468
+ msgid "Approve users at the same time is being created"
469
+ msgstr "Approuver les utilisateurs en même temps que leur création"
470
+
471
+ #: importer.php:657
472
+ msgid "Do not approve users"
473
+ msgstr "Ne pas approuver les utilisateurs"
474
+
475
+ #: importer.php:658
476
+ msgid "Approve users when they are being imported"
477
+ msgstr "Approuver les utilisateurs lors de leur importation"
478
+
479
+ #: importer.php:661
480
+ msgid "New User Approve"
481
+ msgstr "Nouvel utilisateur approuvé"
482
+
483
+ #: importer.php:671
484
+ msgid "Repeated email in different users?"
485
+ msgstr "Courriel répété dans différents utilisateurs ?"
486
+
487
+ #: importer.php:674
488
+ msgid "Not allowed"
489
+ msgstr "Non permis"
490
+
491
+ #: importer.php:675
492
+ msgid "Allowed"
493
+ msgstr "Permis"
494
+
495
+ #: importer.php:677
496
+ msgid "Allow Multiple Accounts"
497
+ msgstr "Autoriser plusieurs comptes"
498
+
499
+ #: importer.php:677
500
+ msgid ""
501
+ "Allow multiple user accounts to be created having the same email address."
502
+ msgstr ""
503
+ "Autoriser la création de plusieurs comptes d'utilisateurs ayant la même "
504
+ "adresse courriel."
505
+
506
+ #: importer.php:686
507
+ msgid "WordPress Access Areas is activated"
508
+ msgstr "Les zones d'accès WordPress sont activées"
509
+
510
+ #: importer.php:688
511
+ msgid "As user of"
512
+ msgstr "En tant qu'utilisateur de"
513
+
514
+ #: importer.php:688
515
+ msgid "WordPress Access Areas"
516
+ msgstr "Zones d'accès WordPress"
517
+
518
+ #: importer.php:688
519
+ msgid "you can use the Access Areas created"
520
+ msgstr "vous pouvez utiliser les zones d'accès créées"
521
+
522
+ #: importer.php:688 importer.php:938
523
+ msgid "here"
524
+ msgstr "par ici"
525
+
526
+ #: importer.php:688
527
+ msgid ""
528
+ "and use this areas in your own CSV file. Please use the column name "
529
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
530
+ "you have used"
531
+ msgstr ""
532
+ "et utilisez ces zones dans votre propre fichier CSV. Veuillez utiliser le "
533
+ "nom de la colonne <strong>wp-access-areas</strong> et utiliser dans chaque "
534
+ "ligne <strong>le nom que vous avez utilisé"
535
+
536
+ #: importer.php:688
537
+ msgid ", like this ones:"
538
+ msgstr ", comme celui-ci :"
539
+
540
+ #: importer.php:697
541
+ msgid ""
542
+ "If you leave this cell empty for some user or the access area indicated "
543
+ "doesn't exist, user won't be assigned to any access area. You can choose "
544
+ "more than one area for each user using pads between them in the same row, i."
545
+ "e.: "
546
+ msgstr ""
547
+ "Si vous laissez cette cellule vide pour un utilisateur ou si la zone d'accès "
548
+ "indiquée n'existe pas, l'utilisateur ne sera affecté à aucune zone d'accès. "
549
+ "Vous pouvez choisir plus d'une zone pour chaque utilisateur en utilisant des "
550
+ "pads entre eux dans la même rangée, par exemple : "
551
+
552
+ #: importer.php:704
553
+ msgid "Send mail"
554
+ msgstr "Envoyer le courriel"
555
+
556
+ #: importer.php:706
557
+ msgid "Do you wish to send a mail with credentials and other data?"
558
+ msgstr ""
559
+ "Voulez-vous envoyer un courriel avec des informations d'identification et "
560
+ "d'autres données ?"
561
+
562
+ #: importer.php:706 importer.php:707
563
+ msgid "yes"
564
+ msgstr "oui"
565
+
566
+ #: importer.php:707
567
+ msgid ""
568
+ "Do you wish to send this mail also to users that are being updated? (not "
569
+ "only to the one which are being created)"
570
+ msgstr ""
571
+ "Voulez-vous envoyer ce courriel également aux utilisateurs qui sont mis à "
572
+ "jour ? (et pas seulement à ceux qui sont créés)"
573
+
574
+ #: importer.php:715
575
+ msgid "Start importing"
576
+ msgstr "Démarrer l’importation"
577
+
578
+ #: importer.php:723
579
+ msgid "Please choose a file"
580
+ msgstr "Veuillez choisir un fichier"
581
+
582
+ #: importer.php:728
583
+ msgid "Please enter a path to the file"
584
+ msgstr "Chemin d'accès au fichier"
585
+
586
+ #: importer.php:733
587
+ msgid "Please select a role"
588
+ msgstr "Veuillez sélectionner un rôle"
589
+
590
+ #: importer.php:740
591
+ msgid "Are you sure to delete this file?"
592
+ msgstr "Voulez-vous vraiment supprimer ce fichier ?"
593
+
594
+ #: importer.php:749
595
+ msgid "There were problems deleting the file, please check file permissions"
596
+ msgstr ""
597
+ "Problèmes pour supprimer le fichier, merci de vérifier les autorisations du "
598
+ "fichier"
599
+
600
+ #: importer.php:751
601
+ msgid "File successfully deleted"
602
+ msgstr "Fichier supprimé avec succès"
603
+
604
+ #: importer.php:759
605
+ msgid ""
606
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
607
+ "other plugins."
608
+ msgstr ""
609
+ "Voulez-vous vraiment supprimer tous les fichiers CSV téléchargés ? Il peut y "
610
+ "avoir des fichiers CSV à partir d'autres extensions."
611
+
612
+ #: importer.php:767
613
+ msgid "There were problems deleting the files, please check files permissions"
614
+ msgstr "Des problèmes ont été rencontrés lors de la suppression des fichiers."
615
+
616
+ #: importer.php:769
617
+ msgid "Files successfully deleted"
618
+ msgstr "Fichiers supprimés avec succès"
619
+
620
+ #: importer.php:794
621
+ msgid "Custom columns loaded"
622
+ msgstr "Colonnes personnalisées"
623
+
624
+ #: importer.php:798
625
+ msgid "Columns loaded in previous files"
626
+ msgstr "Colonnes chargées dans des fichiers précédents"
627
+
628
+ #: importer.php:799
629
+ msgid ""
630
+ "(if you load another CSV with different columns, the new ones will replace "
631
+ "this list)"
632
+ msgstr ""
633
+ "(Si vous chargez un autre CSV avec des colonnes différentes, les nouvelles "
634
+ "remplacent cette liste)"
635
+
636
+ #: importer.php:808
637
+ msgid "There is no columns loaded yet"
638
+ msgstr "Il n'y a pas de colonnes chargées"
639
+
640
+ #: importer.php:823 import-users-from-csv-with-meta.php:202
641
+ msgid "Documentation"
642
+ msgstr "Documentation"
643
+
644
+ #: importer.php:827
645
+ msgid "Columns position"
646
+ msgstr "Position des colonnes"
647
+
648
+ #: importer.php:828
649
+ msgid ""
650
+ "(Documents should look like the one presented into screenshot. Remember you "
651
+ "should fill the first two columns with the next values)"
652
+ msgstr ""
653
+ "(Les documents doivent ressembler à ceux présentés dans la capture d'écran. "
654
+ "N'oubliez pas que vous devriez remplir les deux premières colonnes avec les "
655
+ "valeurs suivantes)"
656
+
657
+ #: importer.php:831
658
+ msgid "Email"
659
+ msgstr "Courriel"
660
+
661
+ #: importer.php:833
662
+ msgid ""
663
+ "(The next columns are totally customizable and you can use whatever you "
664
+ "want. All rows must contains same columns)"
665
+ msgstr ""
666
+ "(Les colonnes suivantes sont totalement personnalisables et vous pouvez "
667
+ "utiliser ce que vous voulez. Toutes les lignes doivent contenir les mêmes "
668
+ "colonnes)"
669
+
670
+ #: importer.php:834
671
+ msgid "(User profile will be adapted to the kind of data you have selected)"
672
+ msgstr ""
673
+ "(Le profil utilisateur sera adapté au type de données que vous avez "
674
+ "sélectionné)"
675
+
676
+ #: importer.php:835
677
+ msgid ""
678
+ "(If you want to disable the extra profile information, please deactivate "
679
+ "this plugin after make the import)"
680
+ msgstr ""
681
+ "(Si vous souhaitez désactiver les informations de profil supplémentaires, "
682
+ "veuillez désactiver cette extension après avoir fait l'importation)"
683
+
684
+ #: importer.php:839
685
+ msgid "id"
686
+ msgstr "ID"
687
+
688
+ #: importer.php:840
689
+ msgid ""
690
+ "You can use a column called id in order to make inserts or updates of an "
691
+ "user using the ID used by WordPress in the wp_users table. We have two "
692
+ "different cases:"
693
+ msgstr ""
694
+ "Vous pouvez utiliser une colonne appelée ID pour faire des insertions ou des "
695
+ "mises à jour d'un utilisateur utilisant l'ID utilisé par WordPress dans la "
696
+ "table wp_users. Nous avons deux cas différents :"
697
+
698
+ #: importer.php:842
699
+ msgid ""
700
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
701
+ "inserted"
702
+ msgstr ""
703
+ "Si l’ID <strong>n'existe pas dans la table des utilisateurs</strong> : "
704
+ "l'utilisateur sera inséré"
705
+
706
+ #: importer.php:843
707
+ msgid ""
708
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
709
+ "it will update the data, if not, it ignores the cell to avoid problems"
710
+ msgstr ""
711
+ "Si l’ID <strong>existe</strong> : l’extension va vérifier si le nom "
712
+ "d’utilisateur est le même, si oui, il va mettre à jour les données, si non, "
713
+ "il ignore la cellule pour éviter les problèmes"
714
+
715
+ #: importer.php:848
716
+ msgid "Passwords"
717
+ msgstr "Mots de passe"
718
+
719
+ #: importer.php:849
720
+ msgid ""
721
+ "A string that contains user passwords. We have different options for this "
722
+ "case:"
723
+ msgstr ""
724
+ "Chaîne contenant des mots de passe utilisateur. Nous avons différentes "
725
+ "options pour ce cas :"
726
+
727
+ #: importer.php:851
728
+ msgid ""
729
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
730
+ "be generated automatically"
731
+ msgstr ""
732
+ "Si vous <strong>ne créez pas de colonne pour les mots de passe</strong> : "
733
+ "les mots de passe seront générés automatiquement"
734
+
735
+ #: importer.php:852
736
+ msgid ""
737
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
738
+ "password won't be updated; if cell has a value, it will be used"
739
+ msgstr ""
740
+ "Si vous <strong>créez une colonne pour les mots de passe</strong> : si la "
741
+ "cellule est vide, le mot de passe ne sera pas mis à jour ; Si la cellule a "
742
+ "une valeur, elle sera utilisée"
743
+
744
+ #: importer.php:857
745
+ msgid "WordPress default profile data"
746
+ msgstr "Données de profil par défaut de WordPress"
747
+
748
+ #: importer.php:858
749
+ msgid ""
750
+ "You can use those labels if you want to set data adapted to the WordPress "
751
+ "default user columns (the ones who use the function"
752
+ msgstr ""
753
+ "Vous pouvez utiliser ces étiquettes si vous souhaitez définir des données "
754
+ "adaptées aux colonnes utilisateur par défaut de WordPress (celles qui "
755
+ "utilisent la fonction"
756
+
757
+ #: importer.php:860
758
+ msgid ""
759
+ "A string that contains a URL-friendly name for the user. The default is the "
760
+ "user's username."
761
+ msgstr ""
762
+ "Chaîne contenant un nom familier pour l'utilisateur. La valeur par défaut "
763
+ "est le nom d'utilisateur de l'utilisateur."
764
+
765
+ #: importer.php:861
766
+ msgid "A string containing the user's URL for the user's web site."
767
+ msgstr ""
768
+ "Chaîne contenant l'URL de l'utilisateur pour le site web de l'utilisateur."
769
+
770
+ #: importer.php:862
771
+ msgid ""
772
+ "A string that will be shown on the site. Defaults to user's username. It is "
773
+ "likely that you will want to change this, for both appearance and security "
774
+ "through obscurity (that is if you don't use and delete the default admin "
775
+ "user)."
776
+ msgstr ""
777
+ "La chaîne qui sera affichée sur le site. Par défaut, le nom d'utilisateur de "
778
+ "l'utilisateur. Il est probable que vous voudrez changer cela, à la fois pour "
779
+ "l'aspect et la sécurité par masquage (c'est-à-dire si vous n'utilisez pas et "
780
+ "ne supprimez pas l'utilisateur admin par défaut)."
781
+
782
+ #: importer.php:863
783
+ msgid "The user's nickname, defaults to the user's username."
784
+ msgstr ""
785
+ "Le pseudonyme de l'utilisateur, par défaut, est le nom d'utilisateur de "
786
+ "l'utilisateur."
787
+
788
+ #: importer.php:864
789
+ msgid "The user's first name."
790
+ msgstr "Prénom de l'utilisateur."
791
+
792
+ #: importer.php:865
793
+ msgid "The user's last name."
794
+ msgstr "Nom de l'utilisateur."
795
+
796
+ #: importer.php:866
797
+ msgid "A string containing content about the user."
798
+ msgstr "Chaîne contenant du contenu sur l'utilisateur."
799
+
800
+ #: importer.php:867
801
+ msgid "User's Jabber account."
802
+ msgstr "Compte Jabber de l'utilisateur."
803
+
804
+ #: importer.php:868
805
+ msgid "User's AOL IM account."
806
+ msgstr "Compte AOL IM de l'utilisateur."
807
+
808
+ #: importer.php:869
809
+ msgid "User's Yahoo IM account."
810
+ msgstr "Compte Yahoo IM de l'utilisateur."
811
+
812
+ #: importer.php:870
813
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
814
+ msgstr "Utilisation du format WordPress pour ce type de données Y-m-d H:i:s."
815
+
816
+ #: importer.php:877
817
+ msgid "WooCommerce is activated"
818
+ msgstr "WooCommerce est activé"
819
+
820
+ #: importer.php:878
821
+ msgid ""
822
+ "You can use those labels if you want to set data adapted to the WooCommerce "
823
+ "default user columns"
824
+ msgstr ""
825
+ "Vous pouvez utiliser ces étiquettes si vous souhaitez définir des données "
826
+ "adaptées aux colonnes utilisateur WooCommerce par défaut"
827
+
828
+ #: importer.php:906
829
+ msgid "Important notice"
830
+ msgstr "Avis important"
831
+
832
+ #: importer.php:907
833
+ msgid ""
834
+ "You can upload as many files as you want, but all must have the same "
835
+ "columns. If you upload another file, the columns will change to the form of "
836
+ "last file uploaded."
837
+ msgstr ""
838
+ "Vous pouvez télécharger autant de fichiers que vous voulez, mais tous "
839
+ "doivent avoir les mêmes colonnes. Si vous téléchargez un autre fichier, les "
840
+ "colonnes changent dans la forme du dernier fichier téléchargé."
841
+
842
+ #: importer.php:910
843
+ msgid "Any question about it"
844
+ msgstr "Toute question à ce sujet"
845
+
846
+ #: importer.php:913
847
+ msgid "Free support (in WordPress forums):"
848
+ msgstr "Support gratuit (dans les forums WordPress) :"
849
+
850
+ #: importer.php:914
851
+ msgid "Premium support (with a quote):"
852
+ msgstr "Assistance Premium (avec un devis) :"
853
+
854
+ #: importer.php:919
855
+ msgid "Example"
856
+ msgstr "Exemple"
857
+
858
+ #: importer.php:920
859
+ msgid "Download this"
860
+ msgstr "Télécharger"
861
+
862
+ #: importer.php:920
863
+ msgid "file"
864
+ msgstr "fichier"
865
+
866
+ #: importer.php:920
867
+ msgid "to test"
868
+ msgstr "pour tester"
869
+
870
+ #: importer.php:936 import-users-from-csv-with-meta.php:202
871
+ msgid "Mail options"
872
+ msgstr "Options de courriel"
873
+
874
+ #: importer.php:938
875
+ msgid "You can set your own SMTP and other mail details"
876
+ msgstr ""
877
+ "Vous pouvez définir <strong>votre propre SMTP</strong> et d'autres détails "
878
+ "de courriel"
879
+
880
+ #: importer.php:943
881
+ msgid "WordPress automatic emails users updated"
882
+ msgstr "Courriels automatiques pour les mises à jour d’utilisateurs"
883
+
884
+ #: importer.php:947
885
+ msgid "Send automatic WordPress emails?"
886
+ msgstr "Envoyer des courriels automatiques WordPress ?"
887
+
888
+ #: importer.php:951
889
+ msgid ""
890
+ "Deactivate WordPress automatic email when an user is updated or his "
891
+ "password is changed"
892
+ msgstr ""
893
+ "Désactiver le courriel automatique lorsqu'un utilisateur est mis à jour ou "
894
+ "que son mot de passe est modifié"
895
+
896
+ #: importer.php:952
897
+ msgid ""
898
+ "Activate WordPress automatic email when an user is updated or his password "
899
+ "is changed"
900
+ msgstr ""
901
+ "Activer le courriel automatique quand un utilisateur est mis à jour ou son "
902
+ "mot de passe est changé"
903
+
904
+ #: importer.php:954
905
+ msgid ""
906
+ "When you update an user or change his password, WordPress prepare and send "
907
+ "automatic email, you can deactivate it here."
908
+ msgstr ""
909
+ "Lorsque vous mettez à jour un utilisateur ou modifiez son mot de passe, "
910
+ "WordPress prépare et envoie un courrier électronique automatique, vous "
911
+ "pouvez le désactiver ici."
912
+
913
+ #: importer.php:962
914
+ msgid "Customize the email that can be sent when importing users"
915
+ msgstr ""
916
+ "Personnaliser le courriel qui peut être envoyé lors de l'importation "
917
+ "d'utilisateurs"
918
+
919
+ #: importer.php:964
920
+ msgid "Mail subject :"
921
+ msgstr "Sujet du courriel :"
922
+
923
+ #: importer.php:972
924
+ msgid "username to login"
925
+ msgstr "nom d'utilisateur pour ce connecter"
926
+
927
+ #: importer.php:973
928
+ msgid "user password"
929
+ msgstr "mot de passe utilisateur"
930
+
931
+ #: importer.php:974
932
+ msgid "current site login url"
933
+ msgstr "URL actuelle de connexion au site"
934
+
935
+ #: importer.php:975
936
+ msgid "lost password url"
937
+ msgstr "URL de mot de passe perdu"
938
+
939
+ #: importer.php:976
940
+ msgid "password reset url"
941
+ msgstr "URL de réinitialisation du mot de passe"
942
+
943
+ #: importer.php:977
944
+ msgid "user email"
945
+ msgstr "courriel utilisateur"
946
+
947
+ #: importer.php:978
948
+ msgid ""
949
+ "You can also use any WordPress user standard field or an own metadata, if "
950
+ "you have used it in your CSV. For example, if you have a first_name column, "
951
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
952
+ msgstr ""
953
+ "Vous pouvez également utiliser n'importe quel champ standard d'utilisateur "
954
+ "WordPress ou une méta-donnée, si vous l'avez utilisé dans votre CSV. Par "
955
+ "exemple, si vous avez une colonne first_name, vous pouvez utiliser ** "
956
+ "first_name ** ou tout autre meta_data comme ** my_custom_meta **"
957
+
958
+ #: importer.php:1029
959
+ msgid "Execute an import of users periodically"
960
+ msgstr "Exécuter une importation d'utilisateurs périodiquement"
961
+
962
+ #: importer.php:1035
963
+ msgid "Path of file that are going to be imported"
964
+ msgstr "Chemin du fichier qui va être importé"
965
+
966
+ #: importer.php:1037 importer.php:1102
967
+ msgid "Insert complete path to the file"
968
+ msgstr "Insérer le chemin d'accès complet au fichier"
969
+
970
+ #: importer.php:1042
971
+ msgid "Period"
972
+ msgstr "Période"
973
+
974
+ #: importer.php:1045
975
+ msgid "Hourly"
976
+ msgstr "Toutes les heures"
977
+
978
+ #: importer.php:1046
979
+ msgid "Twicedaily"
980
+ msgstr "Deux fois par jour"
981
+
982
+ #: importer.php:1047
983
+ msgid "Daily"
984
+ msgstr "Quotidien"
985
+
986
+ #: importer.php:1049
987
+ msgid "How often the event should reoccur?"
988
+ msgstr "À quelle fréquence l’importation doit se produire ?"
989
+
990
+ #: importer.php:1053
991
+ msgid "Activate periodical import?"
992
+ msgstr "Activer l'importation périodique ?"
993
+
994
+ #: importer.php:1059
995
+ msgid "Send mail when using periodical import?"
996
+ msgstr "Envoyer un courriel lors de l'importation périodique ?"
997
+
998
+ #: importer.php:1065
999
+ msgid "Send mail also to users that are being updated?"
1000
+ msgstr "Envoyer également aux utilisateurs qui sont mis à jour ?"
1001
+
1002
+ #: importer.php:1071
1003
+ msgid "Delete users that are not present in the CSV?"
1004
+ msgstr "Supprimer les utilisateurs qui ne sont pas présents dans le CSV ?"
1005
+
1006
+ #: importer.php:1091
1007
+ msgid "Which role would be used to import users?"
1008
+ msgstr "Quel rôle serait utilisé pour importer des utilisateurs ?"
1009
+
1010
+ #: importer.php:1095
1011
+ msgid "Move file after import?"
1012
+ msgstr "Déplacer le fichier après l'importation ?"
1013
+
1014
+ #: importer.php:1108
1015
+ msgid "Last actions of schedule task"
1016
+ msgstr "Dernières actions de la tâche programmée"
1017
+
1018
+ #: importer.php:1114
1019
+ msgid "Mail sending"
1020
+ msgstr "Envoi automatisé"
1021
+
1022
+ #: importer.php:1115
1023
+ msgid ""
1024
+ "Please take care: for this option, cron import, mail sending is not "
1025
+ "available in this version (if you need it"
1026
+ msgstr ""
1027
+ "Veuillez prendre note : pour l’option d’importation automatique, l'envoi de "
1028
+ "courrier n'est pas disponible dans cette version (si vous en avez besoin"
1029
+
1030
+ #: importer.php:1115
1031
+ msgid "talk with us"
1032
+ msgstr "parlez avec nous"
1033
+
1034
+ #: importer.php:1119
1035
+ msgid "Save schedule options"
1036
+ msgstr "Enregistrer les options de planification"
1037
+
1038
+ #: importer.php:1126
1039
+ msgid ""
1040
+ "Are you sure to delete all users that are not present in the CSV? This "
1041
+ "action cannot be undone."
1042
+ msgstr ""
1043
+ "Êtes-vous sûr de supprimer tous les utilisateurs qui ne sont pas présents "
1044
+ "dans le CSV ? Cette action ne peut pas être annulée."
1045
+
1046
+ #: importer.php:1149
1047
+ msgid "Do you like it?"
1048
+ msgstr "Vous aimez cette extension ?"
1049
+
1050
+ #: importer.php:1152
1051
+ msgid "buy me a coffee"
1052
+ msgstr "payez moi un café"
1053
+
1054
+ #: importer.php:1153 importer.php:1173
1055
+ msgid "Hi! we are"
1056
+ msgstr "Bonjour ! Nous sommes"
1057
+
1058
+ #: importer.php:1153 importer.php:1173
1059
+ msgid "and"
1060
+ msgstr "et"
1061
+
1062
+ #: importer.php:1153 importer.php:1173
1063
+ msgid "from"
1064
+ msgstr "de"
1065
+
1066
+ #: importer.php:1153 importer.php:1173
1067
+ msgid "developers of this plugin."
1068
+ msgstr "développeurs de cette extension."
1069
+
1070
+ #: importer.php:1154
1071
+ msgid ""
1072
+ "We have been spending many hours to develop this plugin. <br>If you like and "
1073
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
1074
+ msgstr ""
1075
+ "Nous avons passé plusieurs heures à développer cette extension. <br>Si vous "
1076
+ "aimez et utilisez cette extension, vous pourriez au moins <strong>nous payer "
1077
+ "un café</strong>."
1078
+
1079
+ #: importer.php:1158
1080
+ msgid "PayPal – The safer, easier way to pay online."
1081
+ msgstr "PayPal - La manière la plus sûre et la plus simple de payer en ligne."
1082
+
1083
+ #: importer.php:1170
1084
+ msgid "Need help with WordPress or WooCommerce?"
1085
+ msgstr "Besoin d'aide avec WordPress ou WooCommerce ?"
1086
+
1087
+ #: importer.php:1174
1088
+ msgid ""
1089
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
1090
+ "send us a message to"
1091
+ msgstr ""
1092
+ "Nous travaillons tous les jours avec WordPress et WooCommerce, si vous avez "
1093
+ "besoin d'aide, envoyez-nous un message à"
1094
+
1095
+ #: import-users-from-csv-with-meta.php:51
1096
+ #: import-users-from-csv-with-meta.php:198
1097
+ msgid "Welcome to"
1098
+ msgstr "Bienvenue à"
1099
+
1100
+ #: import-users-from-csv-with-meta.php:52
1101
+ #: import-users-from-csv-with-meta.php:195
1102
+ msgid "Welcome,"
1103
+ msgstr "Bienvenue,"
1104
+
1105
+ #: import-users-from-csv-with-meta.php:52
1106
+ #: import-users-from-csv-with-meta.php:195
1107
+ msgid "Your data to login in this site is:"
1108
+ msgstr "Vos données pour vous connecter sur ce site sont les suivantes :"
1109
+
1110
+ #: import-users-from-csv-with-meta.php:52
1111
+ #: import-users-from-csv-with-meta.php:195
1112
+ msgid "URL to login"
1113
+ msgstr "URL de connexion"
1114
+
1115
+ #: import-users-from-csv-with-meta.php:96
1116
+ msgid "Insert users massively (CSV)"
1117
+ msgstr "Insérer des utilisateurs massivement (CSV)"
1118
+
1119
+ #: import-users-from-csv-with-meta.php:97
1120
+ msgid "SMTP Configuration"
1121
+ msgstr "Configuration SMTP"
1122
+
1123
+ #: import-users-from-csv-with-meta.php:103
1124
+ #: import-users-from-csv-with-meta.php:202
1125
+ msgid "Donate"
1126
+ msgstr "Faites un don"
1127
+
1128
+ #: import-users-from-csv-with-meta.php:104
1129
+ msgid "Premium support"
1130
+ msgstr "Assistance Premium"
1131
+
1132
+ #: import-users-from-csv-with-meta.php:105
1133
+ msgid "Premium plugins"
1134
+ msgstr "Extensions Premium"
1135
+
1136
+ #: import-users-from-csv-with-meta.php:202
1137
+ msgid "Customs columns loaded"
1138
+ msgstr "Colonnes personnalisées"
1139
+
1140
+ #: import-users-from-csv-with-meta.php:202
1141
+ msgid "Cron import"
1142
+ msgstr "Automatisation"
1143
+
1144
+ #: import-users-from-csv-with-meta.php:202
1145
+ msgid "Shop"
1146
+ msgstr "Boutique"
1147
+
1148
+ #: import-users-from-csv-with-meta.php:202
1149
+ msgid "Hire an expert"
1150
+ msgstr "Embaucher un expert"
1151
+
1152
+ #: import-users-from-csv-with-meta.php:242
1153
+ msgid "Error, we cannot find the file"
1154
+ msgstr "Erreur, impossible de trouver le fichier"
1155
+
1156
+ #: import-users-from-csv-with-meta.php:286
1157
+ msgid "Unable to write to directory. Is this directory writable by the server?"
1158
+ msgstr ""
1159
+ "Impossible d'écrire dans le répertoire. Ce répertoire est-il accessible en "
1160
+ "écriture par le serveur ?"
1161
+
1162
+ #: import-users-from-csv-with-meta.php:294
1163
+ msgid "Error, the file"
1164
+ msgstr "Erreur, le fichier"
1165
+
1166
+ #: import-users-from-csv-with-meta.php:294
1167
+ msgid "could not moved to"
1168
+ msgstr "ne peut pas être déplacé à"
1169
+
1170
+ #: import-users-from-csv-with-meta.php:323
1171
+ msgid "Mail template updated correctly"
1172
+ msgstr "Modèle de courriel mis à jour correctement"
1173
+
1174
+ #: import-users-from-csv-with-meta.php:370
1175
+ msgid "Settings updated correctly"
1176
+ msgstr "Paramètres mis à jour correctement"
1177
+
1178
+ #: import-users-from-csv-with-meta.php:376
1179
+ msgid "Import cron task starts at"
1180
+ msgstr "La tâche cron d’importation commence à"
1181
+
1182
+ #: import-users-from-csv-with-meta.php:397
1183
+ msgid "--Finished at"
1184
+ msgstr "-- Finis à"
1185
+
1186
+ #: import-users-from-csv-with-meta.php:506
1187
+ msgid "You are not an adminstrator"
1188
+ msgstr "Vous n'êtes pas un administrateur"
trunk/languages/import-users-from-csv-with-meta.pot ADDED
@@ -0,0 +1,1067 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WordPress Blank Pot
2
+ # Copyright (C) 2014 ...
3
+ # This file is distributed under the GNU General Public License v2 or later.
4
+ #, fuzzy
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WordPress Blank Pot v1.0.0\n"
8
+ "Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
9
+ "POT-Creation-Date: 2017-01-24 19:47+0100\n"
10
+ "PO-Revision-Date: \n"
11
+ "Last-Translator: Toni Ginard <toni.ginard@gmail.com>\n"
12
+ "Language-Team: Your Team <translations@example.com>\n"
13
+ "Language: en_US\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
19
+ "X-Poedit-SourceCharset: UTF-8\n"
20
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
21
+ "esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
22
+ "_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
23
+ "X-Poedit-Basepath: ..\n"
24
+ "X-Generator: Poedit 1.8.9\n"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+
27
+ #: import-users-from-csv-with-meta.php:51
28
+ #: import-users-from-csv-with-meta.php:204
29
+ msgid "Welcome to"
30
+ msgstr ""
31
+
32
+ #: import-users-from-csv-with-meta.php:52
33
+ #: import-users-from-csv-with-meta.php:201
34
+ msgid "Welcome,"
35
+ msgstr ""
36
+
37
+ #: import-users-from-csv-with-meta.php:52
38
+ #: import-users-from-csv-with-meta.php:201
39
+ msgid "Your data to login in this site is:"
40
+ msgstr ""
41
+
42
+ #: import-users-from-csv-with-meta.php:52
43
+ #: import-users-from-csv-with-meta.php:201
44
+ msgid "URL to login"
45
+ msgstr ""
46
+
47
+ #: import-users-from-csv-with-meta.php:52
48
+ #: import-users-from-csv-with-meta.php:201 importer.php:834 smtp.php:218
49
+ msgid "Username"
50
+ msgstr ""
51
+
52
+ #: import-users-from-csv-with-meta.php:102
53
+ msgid "Insert users massively (CSV)"
54
+ msgstr ""
55
+
56
+ #: import-users-from-csv-with-meta.php:102
57
+ #: import-users-from-csv-with-meta.php:208 importer.php:533
58
+ msgid "Import users from CSV"
59
+ msgstr ""
60
+
61
+ #: import-users-from-csv-with-meta.php:103
62
+ msgid "SMTP Configuration"
63
+ msgstr ""
64
+
65
+ #: import-users-from-csv-with-meta.php:109
66
+ #: import-users-from-csv-with-meta.php:208
67
+ msgid "Donate"
68
+ msgstr ""
69
+
70
+ #: import-users-from-csv-with-meta.php:110
71
+ msgid "Premium support"
72
+ msgstr ""
73
+
74
+ #: import-users-from-csv-with-meta.php:111
75
+ msgid "Premium plugins"
76
+ msgstr ""
77
+
78
+ #: import-users-from-csv-with-meta.php:201 smtp.php:222
79
+ msgid "Password"
80
+ msgstr ""
81
+
82
+ #: import-users-from-csv-with-meta.php:208
83
+ msgid "Customs columns loaded"
84
+ msgstr ""
85
+
86
+ #: import-users-from-csv-with-meta.php:208 importer.php:940
87
+ msgid "Mail options"
88
+ msgstr ""
89
+
90
+ #: import-users-from-csv-with-meta.php:208 importer.php:827
91
+ msgid "Documentation"
92
+ msgstr ""
93
+
94
+ #: import-users-from-csv-with-meta.php:208
95
+ msgid "Cron import"
96
+ msgstr ""
97
+
98
+ #: import-users-from-csv-with-meta.php:208
99
+ msgid "Shop"
100
+ msgstr ""
101
+
102
+ #: import-users-from-csv-with-meta.php:208
103
+ msgid "Hire an expert"
104
+ msgstr ""
105
+
106
+ #: import-users-from-csv-with-meta.php:248
107
+ msgid "Error, we cannot find the file"
108
+ msgstr ""
109
+
110
+ #: import-users-from-csv-with-meta.php:292
111
+ msgid "Unable to write to directory. Is this directory writable by the server?"
112
+ msgstr ""
113
+
114
+ #: import-users-from-csv-with-meta.php:300
115
+ msgid "Error, the file"
116
+ msgstr ""
117
+
118
+ #: import-users-from-csv-with-meta.php:300
119
+ msgid "could not moved to"
120
+ msgstr ""
121
+
122
+ #: import-users-from-csv-with-meta.php:329
123
+ msgid "Mail template updated correctly"
124
+ msgstr ""
125
+
126
+ #: import-users-from-csv-with-meta.php:382
127
+ msgid "Settings updated correctly"
128
+ msgstr ""
129
+
130
+ #: import-users-from-csv-with-meta.php:388
131
+ msgid "Import cron task starts at"
132
+ msgstr ""
133
+
134
+ #: import-users-from-csv-with-meta.php:409
135
+ msgid "--Finished at"
136
+ msgstr ""
137
+
138
+ #: import-users-from-csv-with-meta.php:535
139
+ msgid "You are not an adminstrator"
140
+ msgstr ""
141
+
142
+ #: importer.php:60
143
+ msgid "Ready to registers"
144
+ msgstr ""
145
+
146
+ #: importer.php:61
147
+ msgid "First row represents the form of sheet"
148
+ msgstr ""
149
+
150
+ #: importer.php:88
151
+ msgid "File must contain at least 2 columns: username and email"
152
+ msgstr ""
153
+
154
+ #: importer.php:116
155
+ msgid "Inserting and updating data"
156
+ msgstr ""
157
+
158
+ #: importer.php:118
159
+ msgid "Row"
160
+ msgstr ""
161
+
162
+ #: importer.php:123
163
+ msgid "Row number"
164
+ msgstr ""
165
+
166
+ #: importer.php:123
167
+ msgid "does not have the same columns than the header, we are going to skip"
168
+ msgstr ""
169
+
170
+ #: importer.php:176
171
+ msgid "Problems with ID"
172
+ msgstr ""
173
+
174
+ #: importer.php:176
175
+ msgid ""
176
+ "username is not the same in the CSV and in database, we are going to skip."
177
+ msgstr ""
178
+
179
+ #: importer.php:223
180
+ msgid "User already exists as:"
181
+ msgstr ""
182
+
183
+ #: importer.php:223
184
+ msgid "(in this CSV file is called:"
185
+ msgstr ""
186
+
187
+ #: importer.php:242
188
+ msgid "Problems with user:"
189
+ msgstr ""
190
+
191
+ #: importer.php:242
192
+ msgid ", we are going to skip. \\r\\nError: "
193
+ msgstr ""
194
+
195
+ #: importer.php:366
196
+ msgid "Password has not been changed"
197
+ msgstr ""
198
+
199
+ #: importer.php:441
200
+ msgid "Process finished you can go"
201
+ msgstr ""
202
+
203
+ #: importer.php:441
204
+ msgid "here to see results"
205
+ msgstr ""
206
+
207
+ #: importer.php:456
208
+ msgid "You are not allowed to see this content."
209
+ msgstr ""
210
+
211
+ #: importer.php:502
212
+ msgid "Click to open/close"
213
+ msgstr ""
214
+
215
+ #: importer.php:506
216
+ msgid "Old CSV files uploaded"
217
+ msgstr ""
218
+
219
+ #: importer.php:509
220
+ msgid ""
221
+ "For security reasons you should delete this files, probably they would be "
222
+ "visible in the Internet if a bot or someone discover the URL. You can delete "
223
+ "each file or maybe you want delete all CSV files you have uploaded:"
224
+ msgstr ""
225
+
226
+ #: importer.php:510
227
+ msgid "Delete all CSV files uploaded"
228
+ msgstr ""
229
+
230
+ #: importer.php:520
231
+ msgid "Delete"
232
+ msgstr ""
233
+
234
+ #: importer.php:529
235
+ msgid ""
236
+ "File must contain at least <strong>2 columns: username and email</strong>. "
237
+ "These should be the first two columns and it should be placed <strong>in "
238
+ "this order: username and email</strong>. If there are more columns, this "
239
+ "plugin will manage it automatically."
240
+ msgstr ""
241
+
242
+ #: importer.php:530
243
+ msgid ""
244
+ "Please, read carefully how <strong>passwords are managed</strong> and also "
245
+ "take note about capitalization, this plugin is <strong>case sensitive</"
246
+ "strong>."
247
+ msgstr ""
248
+
249
+ #: importer.php:543
250
+ msgid "Update existing users?"
251
+ msgstr ""
252
+
253
+ #: importer.php:546 importer.php:575
254
+ msgid "Yes"
255
+ msgstr ""
256
+
257
+ #: importer.php:547 importer.php:574
258
+ msgid "No"
259
+ msgstr ""
260
+
261
+ #: importer.php:553 importer.php:1108
262
+ msgid "Role"
263
+ msgstr ""
264
+
265
+ #: importer.php:566
266
+ msgid ""
267
+ "If you choose more than one role, the roles would be assigned correctly but "
268
+ "you should use some plugin like <a href=\"https://wordpress.org/plugins/user-"
269
+ "role-editor/\">User Role Editor</a> to manage them."
270
+ msgstr ""
271
+
272
+ #: importer.php:571
273
+ msgid "Update roles for existing users?"
274
+ msgstr ""
275
+
276
+ #: importer.php:581
277
+ msgid "CSV file <span class=\"description\">(required)</span></label>"
278
+ msgstr ""
279
+
280
+ #: importer.php:585
281
+ msgid "<em>or you can choose directly a file from your host,"
282
+ msgstr ""
283
+
284
+ #: importer.php:585 importer.php:589
285
+ msgid "click here"
286
+ msgstr ""
287
+
288
+ #: importer.php:588 importer.php:1047 importer.php:1138
289
+ msgid "You have to introduce the path to file, i.e.:"
290
+ msgstr ""
291
+
292
+ #: importer.php:589
293
+ msgid "or you can upload it directly from your PC"
294
+ msgstr ""
295
+
296
+ #: importer.php:595
297
+ msgid "What should the plugin do with empty cells?"
298
+ msgstr ""
299
+
300
+ #: importer.php:598
301
+ msgid "Leave the old value for this metadata"
302
+ msgstr ""
303
+
304
+ #: importer.php:599
305
+ msgid "Delete the metadata"
306
+ msgstr ""
307
+
308
+ #: importer.php:625
309
+ msgid "BuddyPress users"
310
+ msgstr ""
311
+
312
+ #: importer.php:626
313
+ msgid ""
314
+ "You can insert any profile from BuddyPress using his name as header. Plugin "
315
+ "will check, before import, which fields are defined in BuddyPress and will "
316
+ "assign it in the update. You can use this fields:"
317
+ msgstr ""
318
+
319
+ #: importer.php:630
320
+ msgid ""
321
+ "Remember that all date fields have to be imported using a format like this: "
322
+ "2016-01-01 00:00:00"
323
+ msgstr ""
324
+
325
+ #: importer.php:632 importer.php:648 importer.php:665 importer.php:681
326
+ msgid "Only for"
327
+ msgstr ""
328
+
329
+ #: importer.php:632 importer.php:648 importer.php:665 importer.php:681
330
+ msgid "users"
331
+ msgstr ""
332
+
333
+ #: importer.php:644
334
+ msgid "Do not activate users"
335
+ msgstr ""
336
+
337
+ #: importer.php:645
338
+ msgid "Activate users when they are being imported"
339
+ msgstr ""
340
+
341
+ #: importer.php:648
342
+ msgid "WP Members"
343
+ msgstr ""
344
+
345
+ #: importer.php:658
346
+ msgid "Approve users at the same time is being created"
347
+ msgstr ""
348
+
349
+ #: importer.php:661
350
+ msgid "Do not approve users"
351
+ msgstr ""
352
+
353
+ #: importer.php:662
354
+ msgid "Approve users when they are being imported"
355
+ msgstr ""
356
+
357
+ #: importer.php:665
358
+ msgid "New User Approve"
359
+ msgstr ""
360
+
361
+ #: importer.php:675
362
+ msgid "Repeated email in different users?"
363
+ msgstr ""
364
+
365
+ #: importer.php:678
366
+ msgid "Not allowed"
367
+ msgstr ""
368
+
369
+ #: importer.php:679
370
+ msgid "Allowed"
371
+ msgstr ""
372
+
373
+ #: importer.php:681
374
+ msgid "Allow Multiple Accounts"
375
+ msgstr ""
376
+
377
+ #: importer.php:681
378
+ msgid ""
379
+ "Allow multiple user accounts to be created having the same email address."
380
+ msgstr ""
381
+
382
+ #: importer.php:690
383
+ msgid "WordPress Access Areas is activated"
384
+ msgstr ""
385
+
386
+ #: importer.php:692
387
+ msgid "As user of"
388
+ msgstr ""
389
+
390
+ #: importer.php:692
391
+ msgid "WordPress Access Areas"
392
+ msgstr ""
393
+
394
+ #: importer.php:692
395
+ msgid "you can use the Access Areas created"
396
+ msgstr ""
397
+
398
+ #: importer.php:692 importer.php:942
399
+ msgid "here"
400
+ msgstr ""
401
+
402
+ #: importer.php:692
403
+ msgid ""
404
+ "and use this areas in your own CSV file. Please use the column name "
405
+ "<strong>wp-access-areas</strong> and in each row use <strong>the name that "
406
+ "you have used"
407
+ msgstr ""
408
+
409
+ #: importer.php:692
410
+ msgid ", like this ones:"
411
+ msgstr ""
412
+
413
+ #: importer.php:701
414
+ msgid ""
415
+ "If you leave this cell empty for some user or the access area indicated "
416
+ "doesn't exist, user won't be assigned to any access area. You can choose "
417
+ "more than one area for each user using pads between them in the same row, i."
418
+ "e.: "
419
+ msgstr ""
420
+
421
+ #: importer.php:708
422
+ msgid "Send mail"
423
+ msgstr ""
424
+
425
+ #: importer.php:710
426
+ msgid "Do you wish to send a mail with credentials and other data?"
427
+ msgstr ""
428
+
429
+ #: importer.php:710 importer.php:711
430
+ msgid "yes"
431
+ msgstr ""
432
+
433
+ #: importer.php:711
434
+ msgid ""
435
+ "Do you wish to send this mail also to users that are being updated? (not "
436
+ "only to the one which are being created)"
437
+ msgstr ""
438
+
439
+ #: importer.php:719
440
+ msgid "Start importing"
441
+ msgstr ""
442
+
443
+ #: importer.php:727
444
+ msgid "Please choose a file"
445
+ msgstr ""
446
+
447
+ #: importer.php:732
448
+ msgid "Please enter a path to the file"
449
+ msgstr ""
450
+
451
+ #: importer.php:737
452
+ msgid "Please select a role"
453
+ msgstr ""
454
+
455
+ #: importer.php:744
456
+ msgid "Are you sure to delete this file?"
457
+ msgstr ""
458
+
459
+ #: importer.php:753
460
+ msgid "There were problems deleting the file, please check file permissions"
461
+ msgstr ""
462
+
463
+ #: importer.php:755
464
+ msgid "File successfully deleted"
465
+ msgstr ""
466
+
467
+ #: importer.php:763
468
+ msgid ""
469
+ "Are you sure to delete ALL CSV files uploaded? There can be CSV files from "
470
+ "other plugins."
471
+ msgstr ""
472
+
473
+ #: importer.php:771
474
+ msgid "There were problems deleting the files, please check files permissions"
475
+ msgstr ""
476
+
477
+ #: importer.php:773
478
+ msgid "Files successfully deleted"
479
+ msgstr ""
480
+
481
+ #: importer.php:798
482
+ msgid "Custom columns loaded"
483
+ msgstr ""
484
+
485
+ #: importer.php:802
486
+ msgid "Columns loaded in previous files"
487
+ msgstr ""
488
+
489
+ #: importer.php:803
490
+ msgid ""
491
+ "(if you load another CSV with different columns, the new ones will replace "
492
+ "this list)"
493
+ msgstr ""
494
+
495
+ #: importer.php:812
496
+ msgid "There is no columns loaded yet"
497
+ msgstr ""
498
+
499
+ #: importer.php:831
500
+ msgid "Columns position"
501
+ msgstr ""
502
+
503
+ #: importer.php:832
504
+ msgid ""
505
+ "(Documents should look like the one presented into screenshot. Remember you "
506
+ "should fill the first two columns with the next values)"
507
+ msgstr ""
508
+
509
+ #: importer.php:835
510
+ msgid "Email"
511
+ msgstr ""
512
+
513
+ #: importer.php:837
514
+ msgid ""
515
+ "(The next columns are totally customizable and you can use whatever you "
516
+ "want. All rows must contains same columns)"
517
+ msgstr ""
518
+
519
+ #: importer.php:838
520
+ msgid "(User profile will be adapted to the kind of data you have selected)"
521
+ msgstr ""
522
+
523
+ #: importer.php:839
524
+ msgid ""
525
+ "(If you want to disable the extra profile information, please deactivate "
526
+ "this plugin after make the import)"
527
+ msgstr ""
528
+
529
+ #: importer.php:843
530
+ msgid "id"
531
+ msgstr ""
532
+
533
+ #: importer.php:844
534
+ msgid ""
535
+ "You can use a column called id in order to make inserts or updates of an "
536
+ "user using the ID used by WordPress in the wp_users table. We have two "
537
+ "different cases:"
538
+ msgstr ""
539
+
540
+ #: importer.php:846
541
+ msgid ""
542
+ "If id <strong>doesn't exist in your users table</strong>: user will be "
543
+ "inserted"
544
+ msgstr ""
545
+
546
+ #: importer.php:847
547
+ msgid ""
548
+ "If id <strong>exists</strong>: plugin check if username is the same, if yes, "
549
+ "it will update the data, if not, it ignores the cell to avoid problems"
550
+ msgstr ""
551
+
552
+ #: importer.php:852
553
+ msgid "Passwords"
554
+ msgstr ""
555
+
556
+ #: importer.php:853
557
+ msgid ""
558
+ "A string that contains user passwords. We have different options for this "
559
+ "case:"
560
+ msgstr ""
561
+
562
+ #: importer.php:855
563
+ msgid ""
564
+ "If you <strong>don't create a column for passwords</strong>: passwords will "
565
+ "be generated automatically"
566
+ msgstr ""
567
+
568
+ #: importer.php:856
569
+ msgid ""
570
+ "If you <strong>create a column for passwords</strong>: if cell is empty, "
571
+ "password won't be updated; if cell has a value, it will be used"
572
+ msgstr ""
573
+
574
+ #: importer.php:861
575
+ msgid "WordPress default profile data"
576
+ msgstr ""
577
+
578
+ #: importer.php:862
579
+ msgid ""
580
+ "You can use those labels if you want to set data adapted to the WordPress "
581
+ "default user columns (the ones who use the function"
582
+ msgstr ""
583
+
584
+ #: importer.php:864
585
+ msgid ""
586
+ "A string that contains a URL-friendly name for the user. The default is the "
587
+ "user's username."
588
+ msgstr ""
589
+
590
+ #: importer.php:865
591
+ msgid "A string containing the user's URL for the user's web site."
592
+ msgstr ""
593
+
594
+ #: importer.php:866
595
+ msgid ""
596
+ "A string that will be shown on the site. Defaults to user's username. It is "
597
+ "likely that you will want to change this, for both appearance and security "
598
+ "through obscurity (that is if you don't use and delete the default admin "
599
+ "user)."
600
+ msgstr ""
601
+
602
+ #: importer.php:867
603
+ msgid "The user's nickname, defaults to the user's username."
604
+ msgstr ""
605
+
606
+ #: importer.php:868
607
+ msgid "The user's first name."
608
+ msgstr ""
609
+
610
+ #: importer.php:869
611
+ msgid "The user's last name."
612
+ msgstr ""
613
+
614
+ #: importer.php:870
615
+ msgid "A string containing content about the user."
616
+ msgstr ""
617
+
618
+ #: importer.php:871
619
+ msgid "User's Jabber account."
620
+ msgstr ""
621
+
622
+ #: importer.php:872
623
+ msgid "User's AOL IM account."
624
+ msgstr ""
625
+
626
+ #: importer.php:873
627
+ msgid "User's Yahoo IM account."
628
+ msgstr ""
629
+
630
+ #: importer.php:874
631
+ msgid "Using the WordPress format for this kind of data Y-m-d H:i:s."
632
+ msgstr ""
633
+
634
+ #: importer.php:881
635
+ msgid "WooCommerce is activated"
636
+ msgstr ""
637
+
638
+ #: importer.php:882
639
+ msgid ""
640
+ "You can use those labels if you want to set data adapted to the WooCommerce "
641
+ "default user columns"
642
+ msgstr ""
643
+
644
+ #: importer.php:910
645
+ msgid "Important notice"
646
+ msgstr ""
647
+
648
+ #: importer.php:911
649
+ msgid ""
650
+ "You can upload as many files as you want, but all must have the same "
651
+ "columns. If you upload another file, the columns will change to the form of "
652
+ "last file uploaded."
653
+ msgstr ""
654
+
655
+ #: importer.php:914
656
+ msgid "Any question about it"
657
+ msgstr ""
658
+
659
+ #: importer.php:917
660
+ msgid "Free support (in WordPress forums):"
661
+ msgstr ""
662
+
663
+ #: importer.php:918
664
+ msgid "Premium support (with a quote):"
665
+ msgstr ""
666
+
667
+ #: importer.php:923
668
+ msgid "Example"
669
+ msgstr ""
670
+
671
+ #: importer.php:924
672
+ msgid "Download this"
673
+ msgstr ""
674
+
675
+ #: importer.php:924
676
+ msgid "file"
677
+ msgstr ""
678
+
679
+ #: importer.php:924
680
+ msgid "to test"
681
+ msgstr ""
682
+
683
+ #: importer.php:942
684
+ msgid "You can set your own SMTP and other mail details"
685
+ msgstr ""
686
+
687
+ #: importer.php:947
688
+ msgid "WordPress automatic emails users updated"
689
+ msgstr ""
690
+
691
+ #: importer.php:951
692
+ msgid "Send automatic WordPress emails?"
693
+ msgstr ""
694
+
695
+ #: importer.php:955
696
+ msgid ""
697
+ "Deactivate WordPress automatic email when an user is updated or his "
698
+ "password is changed"
699
+ msgstr ""
700
+
701
+ #: importer.php:956
702
+ msgid ""
703
+ "Activate WordPress automatic email when an user is updated or his password "
704
+ "is changed"
705
+ msgstr ""
706
+
707
+ #: importer.php:958
708
+ msgid ""
709
+ "When you update an user or change his password, WordPress prepare and send "
710
+ "automatic email, you can deactivate it here."
711
+ msgstr ""
712
+
713
+ #: importer.php:966
714
+ msgid "Customize the email that can be sent when importing users"
715
+ msgstr ""
716
+
717
+ #: importer.php:968
718
+ msgid "Mail subject :"
719
+ msgstr ""
720
+
721
+ #: importer.php:976
722
+ msgid "username to login"
723
+ msgstr ""
724
+
725
+ #: importer.php:977
726
+ msgid "user password"
727
+ msgstr ""
728
+
729
+ #: importer.php:978
730
+ msgid "current site login url"
731
+ msgstr ""
732
+
733
+ #: importer.php:979
734
+ msgid "lost password url"
735
+ msgstr ""
736
+
737
+ #: importer.php:980
738
+ msgid "password reset url"
739
+ msgstr ""
740
+
741
+ #: importer.php:981
742
+ msgid "user email"
743
+ msgstr ""
744
+
745
+ #: importer.php:982
746
+ msgid ""
747
+ "You can also use any WordPress user standard field or an own metadata, if "
748
+ "you have used it in your CSV. For example, if you have a first_name column, "
749
+ "you could use **first_name** or any other meta_data like **my_custom_meta**"
750
+ msgstr ""
751
+
752
+ #: importer.php:1038
753
+ msgid "Execute an import of users periodically"
754
+ msgstr ""
755
+
756
+ #: importer.php:1044
757
+ msgid "Path of file that are going to be imported"
758
+ msgstr ""
759
+
760
+ #: importer.php:1046 importer.php:1137
761
+ msgid "Insert complete path to the file"
762
+ msgstr ""
763
+
764
+ #: importer.php:1051
765
+ msgid "Period"
766
+ msgstr ""
767
+
768
+ #: importer.php:1054
769
+ msgid "Hourly"
770
+ msgstr ""
771
+
772
+ #: importer.php:1055
773
+ msgid "Twicedaily"
774
+ msgstr ""
775
+
776
+ #: importer.php:1056
777
+ msgid "Daily"
778
+ msgstr ""
779
+
780
+ #: importer.php:1058
781
+ msgid "How often the event should reoccur?"
782
+ msgstr ""
783
+
784
+ #: importer.php:1062
785
+ msgid "Activate periodical import?"
786
+ msgstr ""
787
+
788
+ #: importer.php:1068
789
+ msgid "Send mail when using periodical import?"
790
+ msgstr ""
791
+
792
+ #: importer.php:1074
793
+ msgid "Send mail also to users that are being updated?"
794
+ msgstr ""
795
+
796
+ #: importer.php:1080
797
+ msgid "Delete users that are not present in the CSV?"
798
+ msgstr ""
799
+
800
+ #: importer.php:1089 importer.php:1091
801
+ msgid "Delete posts of deleted users without assigning to any user"
802
+ msgstr ""
803
+
804
+ #: importer.php:1103
805
+ msgid ""
806
+ "After delete users, we can choose if we want to assign their posts to "
807
+ "another user. Please do not delete them or posts will be deleted."
808
+ msgstr ""
809
+
810
+ #: importer.php:1113 importer.php:1115
811
+ msgid "Disable role assignment in cron import"
812
+ msgstr ""
813
+
814
+ #: importer.php:1126
815
+ msgid "Which role would be used to import users?"
816
+ msgstr ""
817
+
818
+ #: importer.php:1130
819
+ msgid "Move file after import?"
820
+ msgstr ""
821
+
822
+ #: importer.php:1143
823
+ msgid "Auto rename after move?"
824
+ msgstr ""
825
+
826
+ #: importer.php:1150
827
+ msgid ""
828
+ "Your file will be renamed after moved, so you will not lost any version of "
829
+ "it. The way to rename will be append the time stamp using this date format: "
830
+ "YmdHis."
831
+ msgstr ""
832
+
833
+ #: importer.php:1155
834
+ msgid "Last actions of schedule task"
835
+ msgstr ""
836
+
837
+ #: importer.php:1162
838
+ msgid "Save schedule options"
839
+ msgstr ""
840
+
841
+ #: importer.php:1169
842
+ msgid ""
843
+ "Are you sure to delete all users that are not present in the CSV? This "
844
+ "action cannot be undone."
845
+ msgstr ""
846
+
847
+ #: importer.php:1203
848
+ msgid "Do you like it?"
849
+ msgstr ""
850
+
851
+ #: importer.php:1206
852
+ msgid "buy me a coffee"
853
+ msgstr ""
854
+
855
+ #: importer.php:1207 importer.php:1227
856
+ msgid "Hi! we are"
857
+ msgstr ""
858
+
859
+ #: importer.php:1207 importer.php:1227
860
+ msgid "and"
861
+ msgstr ""
862
+
863
+ #: importer.php:1207 importer.php:1227
864
+ msgid "from"
865
+ msgstr ""
866
+
867
+ #: importer.php:1207 importer.php:1227
868
+ msgid "developers of this plugin."
869
+ msgstr ""
870
+
871
+ #: importer.php:1208
872
+ msgid ""
873
+ "We have been spending many hours to develop this plugin. <br>If you like and "
874
+ "use this plugin, you can <strong>buy us a cup of coffee</strong>."
875
+ msgstr ""
876
+
877
+ #: importer.php:1212
878
+ msgid "PayPal – The safer, easier way to pay online."
879
+ msgstr ""
880
+
881
+ #: importer.php:1224
882
+ msgid "Need help with WordPress or WooCommerce?"
883
+ msgstr ""
884
+
885
+ #: importer.php:1228
886
+ msgid ""
887
+ "We work everyday with WordPress and WooCommerce, if you need help hire us, "
888
+ "send us a message to"
889
+ msgstr ""
890
+
891
+ #: smtp.php:26 smtp.php:245
892
+ msgid "Send Test"
893
+ msgstr ""
894
+
895
+ #: smtp.php:40
896
+ msgid "Test mail to "
897
+ msgstr ""
898
+
899
+ #: smtp.php:41
900
+ msgid ""
901
+ "This is a test email generated by the Import User From CSV With Meta "
902
+ "WordPress plugin."
903
+ msgstr ""
904
+
905
+ #: smtp.php:79
906
+ msgid "Message sent successfully"
907
+ msgstr ""
908
+
909
+ #: smtp.php:83
910
+ msgid "Test Message Sent"
911
+ msgstr ""
912
+
913
+ #: smtp.php:84
914
+ msgid "The result was:"
915
+ msgstr ""
916
+
917
+ #: smtp.php:86
918
+ msgid "The full debugging output is shown below:"
919
+ msgstr ""
920
+
921
+ #: smtp.php:88
922
+ msgid "The SMTP debugging output is shown below:"
923
+ msgstr ""
924
+
925
+ #: smtp.php:119
926
+ msgid "Import User From CSV With Meta - SMTP server options"
927
+ msgstr ""
928
+
929
+ #: smtp.php:123
930
+ msgid "Global options"
931
+ msgstr ""
932
+
933
+ #: smtp.php:124
934
+ msgid ""
935
+ "Do you want to use your own SMTP settings for this plugin or the WordPress "
936
+ "settings."
937
+ msgstr ""
938
+
939
+ #: smtp.php:128
940
+ msgid "Settings"
941
+ msgstr ""
942
+
943
+ #: smtp.php:131
944
+ msgid "Use plugin SMTP settings"
945
+ msgstr ""
946
+
947
+ #: smtp.php:133
948
+ msgid "Use this settings to send mail."
949
+ msgstr ""
950
+
951
+ #: smtp.php:135
952
+ msgid "Use WordPress general settings to send mail."
953
+ msgstr ""
954
+
955
+ #: smtp.php:143
956
+ msgid "From Email"
957
+ msgstr ""
958
+
959
+ #: smtp.php:145
960
+ msgid ""
961
+ "You can specify the email address that emails should be sent from. If you "
962
+ "leave this blank, the default email will be used."
963
+ msgstr ""
964
+
965
+ #: smtp.php:145
966
+ msgid ""
967
+ "<strong>Please Note:</strong> You appear to be using a version of WordPress "
968
+ "prior to 2.3. Please ignore the From Name field and instead enter Name&lt;"
969
+ "email@domain.com&gt; in this field."
970
+ msgstr ""
971
+
972
+ #: smtp.php:148
973
+ msgid "From Name"
974
+ msgstr ""
975
+
976
+ #: smtp.php:150
977
+ msgid ""
978
+ "You can specify the name that emails should be sent from. If you leave this "
979
+ "blank, the emails will be sent from WordPress."
980
+ msgstr ""
981
+
982
+ #: smtp.php:156 smtp.php:159
983
+ msgid "Mailer"
984
+ msgstr ""
985
+
986
+ #: smtp.php:161
987
+ msgid "Send emails of this plugin via SMTP."
988
+ msgstr ""
989
+
990
+ #: smtp.php:163
991
+ msgid "Use the PHP mail() function to send emails."
992
+ msgstr ""
993
+
994
+ #: smtp.php:171 smtp.php:174
995
+ msgid "Return Path"
996
+ msgstr ""
997
+
998
+ #: smtp.php:176
999
+ msgid "Set the return-path to match the From Email"
1000
+ msgstr ""
1001
+
1002
+ #: smtp.php:182
1003
+ msgid "SMTP Options"
1004
+ msgstr ""
1005
+
1006
+ #: smtp.php:183
1007
+ msgid "These options only apply if you have chosen to send mail by SMTP above."
1008
+ msgstr ""
1009
+
1010
+ #: smtp.php:187
1011
+ msgid "SMTP Host"
1012
+ msgstr ""
1013
+
1014
+ #: smtp.php:191
1015
+ msgid "SMTP Port"
1016
+ msgstr ""
1017
+
1018
+ #: smtp.php:195 smtp.php:198
1019
+ msgid "Encryption"
1020
+ msgstr ""
1021
+
1022
+ #: smtp.php:200
1023
+ msgid "No encryption."
1024
+ msgstr ""
1025
+
1026
+ #: smtp.php:202
1027
+ msgid "Use SSL encryption."
1028
+ msgstr ""
1029
+
1030
+ #: smtp.php:204
1031
+ msgid ""
1032
+ "Use TLS encryption. This is not the same as STARTTLS. For most servers SSL "
1033
+ "is the recommended option."
1034
+ msgstr ""
1035
+
1036
+ #: smtp.php:208
1037
+ msgid "Authentication"
1038
+ msgstr ""
1039
+
1040
+ #: smtp.php:211
1041
+ msgid "No: Do not use SMTP authentication."
1042
+ msgstr ""
1043
+
1044
+ #: smtp.php:213
1045
+ msgid "Yes: Use SMTP authentication."
1046
+ msgstr ""
1047
+
1048
+ #: smtp.php:214
1049
+ msgid "If this is set to no, the values below are ignored."
1050
+ msgstr ""
1051
+
1052
+ #: smtp.php:227
1053
+ msgid "Save Changes"
1054
+ msgstr ""
1055
+
1056
+ #: smtp.php:234
1057
+ msgid "Send a Test Email"
1058
+ msgstr ""
1059
+
1060
+ #: smtp.php:240
1061
+ msgid "To:"
1062
+ msgstr ""
1063
+
1064
+ #: smtp.php:242
1065
+ msgid ""
1066
+ "Type an email address here and then click Send Test to generate a test email."
1067
+ msgstr ""
trunk/readme.txt ADDED
@@ -0,0 +1,907 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Import users from CSV with meta ===
2
+ Contributors: carazo, hornero
3
+ 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.1.2
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ A plugin to import users using CSV files to WP database automatically including custom user meta
12
+
13
+ == Description ==
14
+
15
+ Clean and easy-to-use Import users plugin. It includes custom user meta to be included automatically from a CSV file and delimitation auto-detector. It also is able to send a mail to each user imported and all the meta data imported is ready to edit into user profile.
16
+
17
+ * Import CSV file with users directly to your WordPress
18
+ * Import thousends of users in only some seconds
19
+ * You can also import meta-data like data from WooCommerce customers using the correct meta_keys
20
+ * You can assign roles while importing
21
+ * Send a mail to every new user, this mails can be saved as templates and are fully customizable
22
+ * Use your own
23
+ * You can also update data of each user
24
+ * Assing a role
25
+ * Create a cron task to import users periodically
26
+ * Edit the metadata (you will be able to edit the metadata imported using metakeys directly in the profile of each user)
27
+ * Read our documentation
28
+ * Extend the plugin using the hooks we provide
29
+ * Ask anything in support forum, we try to give the best support
30
+
31
+ Moreover this plugin is compatible with:
32
+
33
+ * WooCommerce: to import the customer data
34
+ * WooCommerce Membership: to import memberships
35
+ * BuddyPress: to import custom BuddyPress fields, groups and roles
36
+ * Paid Membership Pro: to import memberships
37
+ * Indeed Ultimate Membership Pro: to import memberships
38
+ * Allow Multiple Accounts: plugin will allow the same rules importing than this plugin
39
+ * Groups: to assign users to groups while importing
40
+ * New User Approve: you can import users and approbe/wait for approve them
41
+ * Users Group: to assign users to groups while importing
42
+ * WP LMS Course: to enroll users in the courses while importing
43
+ * WP Members: to import memberships
44
+ * WP Users Group: to assign users to groups while importing
45
+
46
+ In Codection we have more plugins, please take a look to them.
47
+
48
+ * [RedSys Gateway for WooCommerce Pro a plugin to connect your WooCommerce to RedSys](https://codection.com/producto/redsys-gateway-for-woocommerce) (premium)
49
+ * [Ceca Gateway for WooCommerce Pro a plugin to connect your WooCommerce to Ceca](https://codection.com/producto/ceca-gateway-for-woocommerce-pro/) (premium)
50
+ * [BBVA Bancomer for WooCommerce Pro a plugin to connect your WooCommerce to BBVA Bancomer](https://codection.com/producto/bbva-bancomer-mexico-gateway-for-woocommerce-pro/) (premium)
51
+ * [RedSys Button for WordPress a plugin to receive payments using RedSys in WordPress without using WooCommerce](https://codection.com/producto/redsys-button-wordpress/) (premium)
52
+ * [RedSys Gateway for Contact Form 7 a plugin to receive payments using RedSys in WordPress using the popular contact plugin Contact Form 7](https://codection.com/producto/redsys-gateway-for-contact-form-7/) (premium)
53
+ * [Ceca Gateway for Contact Form 7 a plugin to receive payments using Ceca in WordPress using the popular contact plugin Contact Form 7](https://codection.com/producto/ceca-gateway-for-contact-form-7/) (premium)
54
+ * [RedSys Gateway for WP Booking Calendar Pro a plugin to receive payments using RedSys in WordPress using WP Booking Calendar Pro](https://codection.com/producto/redsys-gateway-for-wp-booking-calendar-pro/) (premium)
55
+ * [RedSys Gateway for Goodlayers Tourmaster Pro a plugin to receive payments using RedSys in WordPress using Goodlayers Tourmaster Pro](https://codection.com/producto/redsys-gateway-for-goodlayers-tourmaster-pro/) (premium)
56
+ * [Clean Login a plugin to create your own register, log in, lost password and update profile forms](https://wordpress.org/plugins/clean-login/) (free)
57
+
58
+ ### **Basics**
59
+
60
+ * Import users from a CSV easily
61
+ * And also extra profile information with the user meta data (included in the CSV with your custom fields)
62
+ * Just upload the CSV file (one included as example)
63
+ * All your users will be created/updated with the updated information, and of course including the user meta
64
+ * Autodetect delimiter compatible with `comma , `, `semicolon ; ` and `bar | `
65
+
66
+ ### **Usage**
67
+
68
+ Once the plugin is installed you can use it. Go to Tools menu and there, there will be a section called _Insert users from CSV_. Just choose your CSV file and go!
69
+
70
+ ### **CSV generation**
71
+
72
+ You can generate CSV file with all users inside it, using a standar spreadsheet software like: Microsoft Excel, LibreOffice Calc, OpenOffice Calc or Gnumeric.
73
+
74
+ You have to create the file filled with information (or take it from another database) and you will only have to choose CSV file when you "Save as..." the file. As example, a CSV file is included with the plugin.
75
+
76
+ ### **Some considerations**
77
+
78
+ Plugin will automatically detect:
79
+
80
+ * Charset and set it to **UTF-8** to prevent problems with non-ASCII characters.
81
+ * It also will **auto detect line-ending** to prevent problems with different OS.
82
+ * Finally, it will **detect the delimiter** being used in CSV file
83
+
84
+ == Screenshots ==
85
+
86
+ 1. Plugin link from dashboard
87
+ 2. Plugin page
88
+ 3. CSV file structure
89
+ 4. Users imported
90
+ 5. Extra profile information (user meta)
91
+
92
+ == Changelog ==
93
+
94
+ = 1.15.1.2 =
95
+ * You can now select which delimiter is used in the CSV exports and also you can choose the date time format in date time and timestamps date
96
+
97
+ = 1.15.1.1 =
98
+ * You can now filter users that are being exported by role and user registered date
99
+
100
+ = 1.15.1 =
101
+ * New tab with a list of all meta keys found in the database, with the type of it and an example to be able to use it in your imports
102
+
103
+ = 1.15.0.1 =
104
+ * Only users who can create users, can export them
105
+
106
+ = 1.15 =
107
+ * Export option included
108
+
109
+ = 1.14.3.10 =
110
+ * Changed the way HTML emails are declared to prevent problems with plugins like WP HTML Mail
111
+
112
+ = 1.14.3.9 =
113
+ * Included compatibility with WP User Avatar to import avatar images while the import is being executed, thanks to the support of cshaffstall.com
114
+
115
+ = 1.14.3.8 =
116
+ * user_login and show_admin_bar_front are included as WordPress core fields to avoid showing it as custom meta_keys thanks to
117
+ Michael Finkenberger
118
+
119
+ = 1.14.3.7 =
120
+ * New filters added to custom message shown in log or regular import
121
+ * Last roles used are remembered in import, to avoid you have to choose all time different roles
122
+
123
+ = 1.14.3.6 =
124
+ * Fixed a problem with a nonce that was bad named
125
+
126
+ = 1.14.3.5 =
127
+ * Removed some tags when printing log in cron job
128
+ * Improved error message with Customer Area Addon
129
+
130
+ = 1.14.3.4 =
131
+ * Fixed other problem thanks to @alexgav (https://wordpress.org/support/topic/issue-in-cron-import-tab/)
132
+
133
+ = 1.14.3.3 =
134
+ * Fixed some problems thanks to @alexgav (https://wordpress.org/support/topic/issue-in-cron-import-tab/)
135
+
136
+ = 1.14.3.2 =
137
+ * Added CSS to fix table mobile view
138
+
139
+ = 1.14.3.1 =
140
+ * Problems uploading users from fronted fixed
141
+
142
+ = 1.14.3 =
143
+ * Filter added to fix CSV files upload problems
144
+
145
+ = 1.14.2.12 =
146
+ * Typos fixed thanks to https://wordpress.org/support/topic/typo-in-the-settings-page/
147
+
148
+ = 1.14.2.11 =
149
+ * Problem using "Yes, add new roles and not override existing one" was fixed
150
+
151
+ = 1.14.2.10 =
152
+ * Change period was not working if you did not deactivate first the cron job, now it is solved and you can do it without deactivating cron job
153
+
154
+ = 1.14.2.9 =
155
+ * Role default problem fixed thanks for all the one who notice the bug
156
+
157
+ = 1.14.2.8 =
158
+ * Addon to import groups of Customer Area Managed Area included
159
+
160
+ = 1.14.2.7 =
161
+ * Removed old code parts from SMTP settings that now are not available and could create warnings
162
+
163
+ = 1.14.2.6 =
164
+ * Problem fixed deleting old CSV files
165
+
166
+ = 1.14.2.5 =
167
+ * Problem fixed in cron job
168
+
169
+ = 1.14.2.4 =
170
+ * HTML problems fixed
171
+
172
+ = 1.14.2.3 =
173
+ * Global variable with url of plugin removed
174
+
175
+ = 1.14.2.2 =
176
+ * More nonces included
177
+
178
+ = 1.14.2.1 =
179
+ * Directory traversal attack prevented
180
+
181
+ = 1.14.2 =
182
+ * Authenticated Media Deletion Vulnerability fixed in acui_bulk_delete_attachment
183
+ * Nonces incorporated in different AJAX and forms to improve security
184
+ * Media type of media deleted check to avoid problems deleting files
185
+ * SMTP configuration removed completely, we recommend to use a SMTP plugin if you need it in the future, this part was deprecated some versions ago
186
+ * plugins_url() now is well called so images, files and other assets will be shown properly in all cases
187
+ * Data is sanitized always to prevent security and user problems
188
+
189
+ = 1.14.1.3 =
190
+ * XSS problem fixed when displaying data imported
191
+
192
+ = 1.14.1.2 =
193
+ * New Spanish hosting partner included
194
+ * Link added to new review
195
+
196
+ = 1.14.1.1 =
197
+ * We have changed some empty() check to === '' check, to avoid problems with values like blank spaces (thanks to https://wordpress.org/support/topic/not-importing-fields-with-just-spaces/#post-11597406)
198
+
199
+ = 1.14.1 =
200
+ * Compatibility with Groups plugin (https://es.wordpress.org/plugins/groups/)
201
+
202
+ = 1.14.0.9 =
203
+ * WP-CLI does not manage our previous version
204
+ * New tab "New features" added
205
+
206
+ = 1.14.0.8.1 =
207
+ * Bug fixed
208
+
209
+ = 1.14.0.8 =
210
+ * **passwordreseturllink** shows reset password url with a link in HTML
211
+
212
+ = 1.14.0.7 =
213
+ * Filter improved to avoid strange characters in emails
214
+
215
+ = 1.14.0.6 =
216
+ * Notice fixed from last change
217
+
218
+ = 1.14.0.5 =
219
+ * Role now is not required when importing
220
+
221
+ = 1.14.0.4 =
222
+ * Fix to save email options bug (that appeared in last version)
223
+
224
+ = 1.14.0.3 =
225
+ * Security fixes to prevent Reflected Cross Site Scripting (XSS) and Cross Site Request Forgery (CSRF), thanks to Application Security for reporting
226
+
227
+ = 1.14.0.2 =
228
+ * get_users used memory improved filtering fields returned, thanks to @shortcutsolutions (https://wordpress.org/support/topic/import-page-no-longer-has-submit-button/#post-11309862)
229
+
230
+ = 1.14.0.1 =
231
+ * Echo removed from class to prevent message on activation
232
+
233
+ = 1.14 =
234
+ * Options management improved
235
+ * GUI improved
236
+ * Now you can change the role of users that are not in the CSV file thanks to California Advocates Management Services
237
+
238
+ = 1.13.2 =
239
+ * Attachments in email templates and mail options now can be deleted thanks to Joel Frankwick
240
+
241
+ = 1.13.1 =
242
+ * Email templates loads also the attachment in Mail options when they are selected thanks to Joel Frankwick
243
+
244
+ = 1.13 =
245
+ * Now you can delete users that are not in the CSV file, not only when you are doing an import based on a cron task, but also when you do it from the dashboard or with the shortcode in the frontend thanks to mojosolo.com
246
+ * Documentation improved
247
+ * Bug fixed
248
+ * Tested up to 5.1
249
+
250
+ = 1.12.6.2 =
251
+ * Notices fixed
252
+ * Some file deleted and some urls fixed
253
+
254
+ = 1.12.6.1 =
255
+ * Plugin is now compatible with plugins that change login url, thanks to @2candela2 (https://wordpress.org/support/topic/make-it-compatible-with-plugins-that-change-login-url/)
256
+
257
+ = 1.12.6 =
258
+ * wpml-config.xml added to improve compatibility with WPML
259
+ * Warnings fixed
260
+
261
+ = 1.12.5.1 =
262
+ * Fixed some files that were not included in the trunk
263
+
264
+ = 1.12.5 =
265
+ * New addon added thanks to @egraznov in order to make possible to import data from LifterLMS
266
+
267
+ = 1.12.4 =
268
+ * New hooks added to make possible to include new tabs from an addon
269
+
270
+ = 1.12.3.1 =
271
+ * Fatal error fixed in frontend tab
272
+
273
+ = 1.12.3 =
274
+ * Integration with Paid Membership Pro improved thanks to @joneiseman (https://wordpress.org/support/topic/import-paid-membership-pro-fields-not-working/#post-11110984)
275
+
276
+ = 1.12.2.3 =
277
+ * Readme updated
278
+
279
+ = 1.12.2.2 =
280
+ * Readme fixed
281
+
282
+ = 1.12.2.1 =
283
+ * SMTP settings removed, old link was yet placed and caused misunderstandings, thanks to @paulabender for the notice
284
+ * Tested up to WordPress 5.0.3
285
+
286
+ = 1.12.2 =
287
+ * Extra check to avoid problems with CSV bad formed
288
+ * Plugin can now manage attachments in email sending and email templates thanks to Immersedtechnologies
289
+ * Part of the code has been rewritten using classes
290
+ * We have changed the way of detecting the delimiter (thanks to @chaskinsuk https://wordpress.org/support/topic/detect-delimiter-fails-with-serialized-data/)
291
+
292
+ = 1.12.1 =
293
+ * Filter added to avoid script inside values of each cells to prevent XSS attacks, thanks for reporting Slawek Zytko
294
+
295
+ = 1.12 =
296
+ * Plugin can now manage email templates for managing mails which are sent to users thanks to Immersedtechnologies
297
+
298
+ = 1.11.3.17 =
299
+ * Documentation improved with some notes about roles management thanks to @stephenfourie (https://wordpress.org/support/topic/user-role-always-set-as-administrator/)
300
+
301
+ = 1.11.3.16 =
302
+ * Redeclaration of str_getcsv removed, this is not necessary because of all new PHP versions contains it
303
+
304
+ = 1.11.3.15 =
305
+ * Filters included for auto password generated
306
+ * Tested up to WordPress 5.0
307
+
308
+ = 1.11.3.14 =
309
+ * Empty email check added thanks to @malcolm-oph (https://wordpress.org/support/topic/blank-email-field-in-csv-data-not-detected/)
310
+
311
+ = 1.11.3.13 =
312
+ * Mail address with data of users can now be overriden thanks to a new filter
313
+
314
+ = 1.11.3.12 =
315
+ * Plugin is now compatible with Vimeo Sync Membership thanks to Justin Snavely
316
+
317
+ = 1.11.3.11 =
318
+ * Now you can use the WordPress loaded schedules in the cron import instead of the three default one thanks to PM2S
319
+ * Mail cron sending fixed issues
320
+
321
+ = 1.11.3.10 =
322
+ * New hooks added thanks to Joel Frankwick in order to make possible to change default wp_mail() headers
323
+
324
+ = 1.11.3.9 =
325
+ * New hooks added thanks to @malcolm-oph (https://wordpress.org/support/topic/using-filters-to-add-data-columns/)
326
+
327
+ = 1.11.3.8.1 =
328
+ * Fixed bug thanks to @xenator for discovering the bug (https://wordpress.org/support/topic/uncaught-error-while-importing-users/#post-10618130)
329
+
330
+ = 1.11.3.8 =
331
+ * Fixed mail sending in frontend import
332
+ * Now you can activate users with WP Members in frontend import
333
+ * Some fixes and warnings added
334
+
335
+ = 1.11.3.7 =
336
+ * Fixes and improvements thanks to @malcolm-oph
337
+
338
+ = 1.11.3.6 =
339
+ * Role import working in cron jobs
340
+
341
+ = 1.11.3.5 =
342
+ * SMTP tab hidden for user which are not using this option
343
+
344
+ = 1.11.3.4 =
345
+ * Bug fixed: thanks to @oldfieldmike for reporting and fixing a bug present when BuddyPress was active (https://wordpress.org/support/topic/bp_xprofile_group/#post-10265833)
346
+
347
+ = 1.11.3.3 =
348
+ * Added compatibility to import levels from Indeed Ultimate Membership Pro
349
+ * Fixed role problems when importing
350
+
351
+ = 1.11.3.2 =
352
+ * Patreon link included and some other improvements to make easier support this develop
353
+ * Deprecated notices included about SMTP settings in this plugin
354
+
355
+ = 1.11.3.1 =
356
+ * Thanks to Sebastian Mellmann(@xenator) a bug have been solved in password management in new users
357
+
358
+ = 1.11.3 =
359
+ * Thanks to @xenator you can now import users with Allow Multiple Accounts with same Mail via cron
360
+
361
+ = 1.11.2 =
362
+ * Problem with WordPress default emails fixed
363
+
364
+ = 1.11.1 =
365
+ * Sidebar changed
366
+ * Readme completed
367
+
368
+ = 1.11 =
369
+ * You can now import users from the frontend using a shortcode thanks to Nelson Artz Group GmbH & Co. KG
370
+
371
+ = 1.10.13 =
372
+ * You can now import User Groups (https://wordpress.org/plugins/user-groups/) and assign them to the users
373
+
374
+ = 1.10.12 =
375
+ * You can now import WP User Groups (https://es.wordpress.org/plugins/wp-user-groups/) and assign them to the users thanks to the support of Arturas & Luis, Lda.
376
+
377
+ = 1.10.11.1 =
378
+ * Debug notice shown fixed (thanks for submiting the bug @anieves (https://wordpress.org/support/topic/problem-using-wp-members-with-import-users-from-csv-2/#post-10035037)
379
+
380
+ = 1.10.11 =
381
+ * Administrator are not deleted in cron task
382
+ * Some hashed passwords was not being imported correctly because of wp_unslash() function into wp_insert_user(), issue fixed
383
+
384
+ = 1.10.10 =
385
+ * Thanks to Attainable Adventure Cruising Ltd now the system to import passwords hashed directly from the CSV has been fixed
386
+ * Thanks to Kevin Price-Ward and Peri Lane now the system does not include the default role when creating a new user
387
+ * Plugin tested up to WordPress 4.9.4
388
+
389
+ = 1.10.9.1 =
390
+ * Thanks to @lucile-agence-pulsi for reporting a bug (https://wordpress.org/support/topic/show-extra-profile-fields/) now this is solved
391
+
392
+ = 1.10.9 =
393
+ * Thanks to the support of Studio MiliLand (http://www.mililand.com) we can now import data to Paid Membership Pro Plugin
394
+
395
+ = 1.10.8.2 =
396
+ * Thanks to @Carlos Herrera we can now import date fields from BuddyPress
397
+
398
+ = 1.10.8.1 =
399
+ * Bug fixed
400
+
401
+ = 1.10.8 =
402
+ * New system for include addons
403
+ * You can now import data from WooCommerce Membership thanks to Lukas from Kousekmusic.cz
404
+ * Tested up to WordPress 4.9
405
+
406
+ = 1.10.7.5 =
407
+ * Bug solved in cron import, now mails not being sent to user who are being updated unless you activate those mails
408
+
409
+ = 1.10.7.4 =
410
+ * Plugin now remember if user has selected or not mail sending when doing a manual import, to select by default this option next time
411
+
412
+ = 1.10.7.3 =
413
+ * Some of the plugins options are disabled by default to prevent unwanted mail sending
414
+
415
+ = 1.10.7.2 =
416
+ * Improve email notification disable
417
+
418
+ = 1.10.7.1 =
419
+ * Sending mail in standard import bug solved, thanks to @manverupl for the error report.
420
+
421
+ = 1.10.7 =
422
+ * New feature thanks to Todd Zaroban (@tzarob) now you can choose if override or not current roles of each user when you are updating them
423
+ * Problem solved in repeated email module thanks to @damienper (https://wordpress.org/support/topic/error-in-email_repeated-php/)
424
+ * Problem solved in mail sending with cron thanks to @khansadi (https://wordpress.org/support/topic/no-email-is-sent-to-new-users-when-created-via-corn-import/)
425
+
426
+ = 1.10.6.9 =
427
+ * Thanks to Peri Lane from Apis Productions you can now import roles from CSV. Read documentation to see the way to work.
428
+
429
+ = 1.10.6.8.1 =
430
+ * Thanks to @fiddla for debugging all this, as update_option with a value equals to true is saved as 1 in the database, we couldn't use the ==! or === operator to see if the option was active or not. Sorry for so many updates those days with this problems and thanks for the debugging
431
+
432
+ = 1.10.6.8 =
433
+ * Bug fixed (now yes) when moving file including date and time thanks to @fiddla
434
+
435
+ = 1.10.6.7 =
436
+ * Bug fixed when moving file including date and time
437
+
438
+ = 1.10.6.6 =
439
+ * Bug fixed thanks to @ov3rfly (https://wordpress.org/support/topic/wrong-path-to-users-page-after-import/)
440
+ * Documentation also included in home page of the plugins thanks to suggestions and threads in forum
441
+
442
+ = 1.10.6.5 =
443
+ * If multisite is enabled it adds the user to the blog thanks to Rudolph Koegelenberg
444
+ * Tested up to 4.8
445
+
446
+ = 1.10.6.4 =
447
+ * Documentation fixed: if user id is present in the CSV but not in the database, it cannot be used to create a new user
448
+
449
+ = 1.10.6.3 =
450
+ * New hook added do_action('post_acui_import_single_user', $headers, $data, $user_id );
451
+
452
+ = 1.10.6.2 =
453
+ * Added documentation about locale and BuddyPress Extendend Profile
454
+ * Header changed to avoid any problem about plugin header
455
+
456
+ = 1.10.6.1 =
457
+ * Fix error in importer.php about delete users (https://wordpress.org/support/topic/wp_delete_user-undefined/#post-8925051)
458
+
459
+ = 1.10.6 =
460
+ * Now you can hide the extra profile fields created with the plugin thanks to Steph O'Brien (Ruddy Good)
461
+
462
+ = 1.10.5 =
463
+ * Now you can import list of elements using :: as separator and it can also be done in BuddyPress profile fields thanks to Jon Eiseman
464
+ * Fixes in SMTP settings
465
+ * SMTP settings now is a new tab
466
+
467
+ = 1.10.4 =
468
+ * Now you can assign BuddyPress groups and assign roles in import thanks to TNTP (tntp.org)
469
+ * Import optimization
470
+ * Readme fixed
471
+
472
+ = 1.10.3.1 =
473
+ * Bug fixed in SMTP settings page
474
+
475
+ = 1.10.3 =
476
+ * Plugin is now prepared for internacionalization using translate.wordpress.org
477
+
478
+ = 1.10.2.2 =
479
+ * German translation fixed thanks to @mfgmicha
480
+ * locale now is considered a data from WordPress user so it won't be shown in profiles
481
+
482
+ = 1.10.2.1 =
483
+ * German translation fixed thanks to @barcelo
484
+ * System compatibility updated
485
+
486
+ = 1.10.2 =
487
+ * New User Approve support fixed thanks to @stephanemartinw (https://wordpress.org/support/topic/new-user-approve-support/#post-8749012)
488
+
489
+ = 1.10.1 =
490
+ * Plugin can now import serialized data.
491
+ * New filter added: $data[$i] = apply_filters( 'pre_acui_import_single_user_single_data', $data[$i], $headers[$i], $i); now you can manage each single data for each user, maybe easier to use than pre_acui_import_single_user_data
492
+
493
+
494
+ = 1.9.9.9 =
495
+ * Now you can automatically rename file after move it. Then you won't lost any file you have imported (thanks to @charlesgodwin)
496
+
497
+ = 1.9.9.8 =
498
+ * Password bug fixed. Now it works as it should (like it is explained in documentation)
499
+
500
+ = 1.9.9.7 =
501
+ * Bug fixed in importer now value 0 is not considered as empty thanks to @lafare (https://wordpress.org/support/topic/importing-values-equal-to-0/#post-8609191)
502
+
503
+ = 1.9.9.6 =
504
+ * From now we are going to keep old versions available in repository
505
+ * We don't delete loaded columns (and fields) when you deactivate the plugin
506
+ * Password is not auto generated when updating user in order to avoid problems (missing password column and update create new passwords and use to create problems)
507
+
508
+ = 1.9.9.5 =
509
+ * Now you can set the email to empty in each row thanks to @sternhagel
510
+
511
+ = 1.9.9.4 =
512
+ * German language added thanks to Wolfgang Kleinrath
513
+ * Added conditional to avoid error on mail sending
514
+
515
+ = 1.9.9.3 =
516
+ * Now you can choose if you want to not assign a role to users when you are making an import cron
517
+
518
+ = 1.9.9.2 =
519
+ * Now you can choose if you want to assign to some user the posts of the users that can be deleted in cron task
520
+
521
+ = 1.9.9.1 =
522
+ * French translation added thanks to @momo-fr
523
+
524
+ = 1.9.9 =
525
+ * Plugin now is localized using i18n thanks to code provided by Toni Ginard @toniginard
526
+
527
+ = 1.9.8.1 =
528
+ * Bug fixed in cron import, nonce conditional check, thanks to Ville Kokkala for showing the bug
529
+
530
+ = 1.9.8 =
531
+ * Password reset url is now available to include in body email thanks to Mary Wheeler (https://wordpress.org/support/users/ransim/)
532
+
533
+ = 1.9.7 =
534
+ * Thanks to Bruce MacPherson we can now choose if we don't want update users roles when importing data if user exist
535
+ * Clearer English thanks to Bruce MacPherson
536
+
537
+ = 1.9.6 =
538
+ * Thanks to Jason Lewis we can now choose if we don't want update users when importing data if user exist
539
+
540
+ = 1.9.5 =
541
+ * Important security fixes added thanks to pluginvulnerabilities.com
542
+
543
+ = 1.9.4.6 =
544
+ * New filter added, thanks to @burton-nerd
545
+
546
+ = 1.9.4.5 =
547
+ * Renamed function to avoid collisions thanks to the message of Jason Lewis
548
+
549
+ = 1.9.4.4 =
550
+ * Fix for the last one, we set true where it was false and vice versa
551
+
552
+ = 1.9.4.3 =
553
+ * We try to make it clear to choose if mails (the one we talked in 1.9.4.2) are being sent or not
554
+
555
+ = 1.9.4.2 =
556
+ * Automatic WordPress emails sending deactivated by default when user is created or updated, thanks to Peter Gariepy
557
+
558
+ = 1.9.4.1 =
559
+ * wpautop added again
560
+
561
+ = 1.9.4 =
562
+ * user_pass can be imported directly hashed thanks to Bad Yogi
563
+
564
+ = 1.9.3 =
565
+ * Now you can move file after cron, thanks to Yme Brugts for supporting this new feature
566
+
567
+ = 1.9.2 =
568
+ * New hook added, thanks to borkenkaefer
569
+
570
+ = 1.9.1 =
571
+ * Fix new feature thanks to bixul ( https://wordpress.org/support/topic/problems-with-user-xxx-error-invalid-user-id?replies=3#post-8572766 )
572
+
573
+ = 1.9 =
574
+ * New feature thanks to Ken Hagen - V3 Insurance Partners LLC, now you can import users directly with his ID or update it using his user ID, please read documentation tab for more information about it
575
+ * New hooks added thank to the idea of borkenkaefer, in the future we will include more and better hooks (actions and filters)
576
+ * Compatibility with New User Approve fixed
577
+
578
+ = 1.8.9 =
579
+ * Lost password link included in the mail template thanks to alex@marckdesign.net
580
+
581
+ = 1.8.8 =
582
+ * Checkbox included in order to avoid sending mail accidentally on password change or user updated.
583
+
584
+ = 1.8.7.4 =
585
+ * Documentation updated.
586
+
587
+ = 1.8.7.3 =
588
+ * Autoparagraph in email text to solve problem about all text in the same line.
589
+ * Tested up to 4.5.1
590
+
591
+ = 1.8.7.2 =
592
+ * Bug in delete_user_meta solved thanks for telling us lizzy2surge
593
+
594
+ = 1.8.7.1 =
595
+ * Bug in HTML mails solved
596
+
597
+ = 1.8.7 =
598
+ * You can choose between plugin mail settings or WordPress mail settings, thanks to Awaken Solutions web design (http://www.awakensolutions.com/)
599
+
600
+ = 1.8.6 =
601
+ * Bug detected in mailer settings, thanks to Carlos (satrebil@gmail.com)
602
+
603
+ = 1.8.5 =
604
+ * Include code changed, after BuddyPress adaptations we break the SMTP settings when activating
605
+
606
+ = 1.8.4 =
607
+ * Labels for mail sending were creating some misunderstandings, we have changed it
608
+
609
+ = 1.8.3 =
610
+ * Deleted var_dump message to debug left accidentally
611
+
612
+ = 1.8.2 =
613
+ * BuddyPress fix in some installation to avoid a fatal error
614
+
615
+ = 1.8.1 =
616
+ * Now you have to select at least a role, we want to prevent the problem of "No roles selected"
617
+ * You can import now BuddyPress fields with this plugin thanks to André Ihlar
618
+
619
+ = 1.8 =
620
+ * Email template has an own custom tab thanks to Amanda Ruggles
621
+ * Email can be sent when you are doing a cron import thanks to Amanda Ruggles
622
+
623
+ = 1.7.9 =
624
+ * Now you can choose if you want to send the email to all users or only to creted users (not to the updated one) thanks to Remy Medranda
625
+ * Compatibility with New User Approve (https://es.wordpress.org/plugins/new-user-approve/) included thanks to Remy Medranda
626
+
627
+ = 1.7.8 =
628
+ * Metadata can be sent in the mail thanks to Remy Medranda
629
+
630
+ = 1.7.7 =
631
+ * Bad link fixed and new links added to the plugin
632
+
633
+ = 1.7.6 =
634
+ * Capability changed from manage_options to create_users, this is a better capatibily to this plugin
635
+
636
+ = 1.7.5 =
637
+ * Bug solved when opening tabs, it were opened in incorrect target
638
+ * Documentation for WooCommerce integration included
639
+
640
+ = 1.7.4 =
641
+ * Bug solved when saving path to file in Cron Import (thanks to Robert Zantow for reporting)
642
+ * New tabs included: Shop and Need help
643
+ * Banner background from WordPress.org updated
644
+
645
+ = 1.7.3 =
646
+ * Users which are not administrator now can edit his extra fields thanks to downka (https://wordpress.org/support/topic/unable-to-edit-imported-custom-profile-fields?replies=1#post-7595520)
647
+
648
+ = 1.7.2 =
649
+ * Plugin is now compatible with WordPress Access Areas plugin (https://wordpress.org/plugins/wp-access-areas/) thanks to Herbert (http://remark.no/)
650
+ * Added some notes to clarify the proper working of the plugin.
651
+
652
+ = 1.7.1 =
653
+ * Bug solved. Thanks for reporting this bug: https://wordpress.org/support/topic/version-17-just-doesnt-work?replies=3#post-7538427
654
+
655
+ = 1.7 =
656
+ * New GUI based on tabs easier to use
657
+ * Thanks to Michael Lancey ( Mckenzie Chase Management, Inc. ) we can now provide all this new features:
658
+ * File can now be refered using a path and not only uploading.
659
+ * You can now create a scheduled event to import users regularly.
660
+
661
+ = 1.6.4 =
662
+ * Bugs detected and solved thanks to a message from Periu Lane and others users, the problem was a var bad named.
663
+
664
+ = 1.6.3 =
665
+ * Default action for empty values now is: leave old value, in this way we prevent unintentional deletions of meta data.
666
+ * Included donate link in plugin.
667
+
668
+ = 1.6.2 =
669
+ * Thanks to Carmine Morra (carminemorra.com) for reporting problems with <p> and <br/> tags in body of emails.
670
+
671
+ = 1.6.1 =
672
+ * Thanks to Matthijs Mons: now this plugin is able to work with Allow Multiple Accounts (https://wordpress.org/plugins/allow-multiple-accounts/) and allow the possibility of register/update users with same email instead as using thme in this case as a secondary reference to the user as the username.
673
+
674
+ = 1.6 =
675
+ * Now options that are only useful if some other plugin is activated, they will only show when those plugins were activated
676
+ * Thanks to Carmine Morra (carminemorra.com) for supporting the next two big features:
677
+ * New role manager: instead of using a select list, you can choose roles now using checkboxes and you can choose more than one role per user
678
+ * SMTP server: you can send now from your WordPress directly or using a external SMTP server (almost all SMTP config and SMTP sending logic are based in the original one from WP Mail SMTP - https://wordpress.org/plugins/wp-mail-smtp/). When the plugin finish sending mail, reset the phpmailer to his previous state, so it won't break another SMTP mail plugin.
679
+ * And this little one, you can use **email** in mail body to send to users their email (as it existed before: **loginurl**, **username**, **password**)
680
+
681
+ = 1.5.2 =
682
+ * Thanks to idealien, if we use username to update users, the email can be updated as the rest of the data and metadata of the user and we silence the email changing message generated by core.
683
+
684
+ = 1.5.1 =
685
+ * Thanks to Mitch ( mitch AT themilkmob DOT org ) for reporting the bug, now headers do not appears twice.
686
+
687
+ = 1.5 =
688
+ * Thanks to Adam Hunkapiller ( of dreambridgepartners.com ) have supported all this new functionalities.
689
+ * You can choose the mail from and the from name of the mail sent.
690
+ * Mail from, from name, mail subject and mail body are now saved in the system and reused anytime you used the plugin in order to make the mail sent easier.
691
+ * You can include all this fields in the mail: "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim", "yim", "user_registered" if you used it in the CSV and you indicate it the mail body in this way **FIELD_NAME**, for example: **first_name**
692
+
693
+ = 1.4.2 =
694
+ * Due to some support threads, we have add a different background-color and color in rows that are problematic: the email was found in the system but the username is not the same
695
+
696
+ = 1.4.1 =
697
+ * Thanks to Peri Lane for supporting the new functionality which make possible to activate users at the same time they are being importing. Activate users as WP Members plugin (https://wordpress.org/plugins/wp-members/) consider a user is activated
698
+
699
+ = 1.4 =
700
+ * Thanks to Kristopher Hutchison we have add an option to choose what you want to do with empty cells: 1) delete the meta-data or 2) ignore it and do not update, previous to this version, the plugin update the value to empty string
701
+
702
+ = 1.3.9.4 =
703
+ * Previous version does not appear as updated in repository, with this version we try to fix it
704
+
705
+ = 1.3.9.3 =
706
+ * In WordPress Network, admins can now use the plugin and not only superadmins. Thanks to @jephperro
707
+
708
+ = 1.3.9.2 =
709
+ * Solved some typos. Thanks to Jonathan Lampe
710
+
711
+ = 1.3.9.1 =
712
+ * JS bug fixed, thanks to Jess C
713
+
714
+ = 1.3.9 =
715
+ * List of old CSV files created in order to prevent security problems.
716
+ * Created a button to delete this files directly in the plugin, you can delete one by one or you can do a bulk delete.
717
+
718
+ = 1.3.8 =
719
+ * Fixed a problem with iterator in columns count. Thanks to alysko for their message: https://wordpress.org/support/topic/3rd-colums-ignored?replies=1
720
+
721
+ = 1.3.7 =
722
+ * After upload, CSV file is deleted in order to prevent security issues.
723
+
724
+ = 1.3.6 =
725
+ * Thanks to idealien for telling us that we should check also if user exist using email (in addition to user login). Now we do this double check to prevent problems with users that exists but was registered using another user login. In the table we show this difference, the login is not changed, but all the rest of data is updated.
726
+
727
+ = 1.3.5 =
728
+ * Bug in image fixed
729
+ * Title changed
730
+
731
+ = 1.3.4 =
732
+ * Warning with sends_mail parameter fixed
733
+ * Button to donate included
734
+
735
+ = 1.3.3 =
736
+ * Screenshot updated, now it has the correct format. Thank to gmsb for telling us the problem with screenshout outdated
737
+
738
+ = 1.3.2 =
739
+ * Thanks to @jRausell for solving a bug with a count and an array
740
+
741
+ = 1.3.1 =
742
+ * WooCommerce fields integration into profile
743
+ * Duplicate fields detection into profile
744
+ * Thanks to @derwentx to give us the code to make possible to include this new features
745
+
746
+ = 1.3 =
747
+ * This is the biggest update in the history of this plugin: mails and passwords generation have been added.
748
+ * Thanks to @jRausell to give us code to start with mail sending functionality. We have improved it and now it is available for everyone.
749
+ * Mails are customizable and you can choose
750
+ * Passwords are also generated, please read carefully the documentation in order to avoid passwords lost in user updates.
751
+
752
+ = 1.2.3 =
753
+ * Extra format check done at the start of each row.
754
+
755
+ = 1.2.2 =
756
+ * Thanks to twmoore3rd we have created a system to detect email collisions, username collision are not detected because plugin update metadata in this case
757
+
758
+ = 1.2.1 =
759
+ * Thanks to Graham May we have fixed a problem when meta keys have a blank space and also we have improved plugin security using filter_input() and filter_input_array() functions instead of $_POSTs
760
+
761
+ = 1.2 =
762
+ * From this version, plugin can both insert new users and update new ones. Thanks to Nick Gallop from Weston Graphics.
763
+
764
+ = 1.1.8 =
765
+ * Donation button added.
766
+
767
+ = 1.1.7 =
768
+ * Fixed problems with \n, \r and \n\r inside CSV fields. Thanks to Ted Stresen-Reuter for his help. We have changed our way to parse CSV files, now we use SplFileObject and we can solve this problem.
769
+
770
+ = 1.2 =
771
+ * From this version, plugin can both insert new users and update new ones. Thanks to Nick Gallop from Weston Graphics.
772
+
773
+ = 1.1.8 =
774
+ * Donation button added.
775
+
776
+ = 1.1.7 =
777
+ * Fixed problems with \n, \r and \n\r inside CSV fields. Thanks to Ted Stresen-Reuter for his help. We have changed our way to parse CSV files, now we use SplFileObject and we can solve this problem.
778
+
779
+ = 1.1.6 =
780
+ * You can import now user_registered but always in the correct format Y-m-d H:i:s
781
+
782
+ = 1.1.5 =
783
+ * Now plugins is only shown to admins. Thanks to flegmatiq and his message https://wordpress.org/support/topic/the-plugin-name-apears-in-dashboard-menu-of-non-aministrators?replies=1#post-6126743
784
+
785
+ = 1.1.4 =
786
+ * Problem solved appeared in 1.1.3: sometimes array was not correctly managed.
787
+
788
+ = 1.1.3 =
789
+ * As fgetscsv() have problems with non UTF8 characters we changed it and now we had problems with commas inside fields, so we have rewritten it using str_getcsv() and declaring the function in case your current PHP version doesn't support it.
790
+
791
+ = 1.1.2 =
792
+ * fgetscsv() have problems with non UTF8 characters, so we have changed it for fgetcsv() thanks to a hebrew user who had problems.
793
+
794
+ = 1.1.1 =
795
+ * Some bugs found and solved managing custom columns after 1.1.0 upgrade.
796
+ * If you have problems/bugs about custom headers, you should deactivate the plugin and then activate it and upload a CSV file with the correct headers again in order to solve some problems.
797
+
798
+ = 1.1.0 =
799
+ * WordPress user profile default info is now saved correctly, the new fields are: "user_nicename", "user_url", "display_name", "nickname", "first_name", "last_name", "description", "jabber", "aim" and "yim"
800
+ * New CSV example created.
801
+ * Documentation adapted to new functionality.
802
+
803
+ = 1.0.9 =
804
+ * Bug with some UTF-8 strings, fixed.
805
+
806
+ = 1.0.8 =
807
+ * The list of roles is generated reading all the roles avaible in the system, instead of being the default always.
808
+
809
+ = 1.0.7 =
810
+ * Issue: admin/super_admin change role when file is too large. Two checks done to avoid it.
811
+
812
+ = 1.0.6 =
813
+ * Issue: Problems detecting extension solved (array('csv' => 'text/csv') added)
814
+
815
+ = 1.0.5 =
816
+ * Issue: Existing users role change, fixed
817
+
818
+ = 1.0.0 =
819
+ * First release
820
+
821
+ == Upgrade Notice ==
822
+
823
+ = 1.0 =
824
+ * First installation
825
+
826
+ == Frequently Asked Questions ==
827
+
828
+ = Columns position =
829
+
830
+ You should fill the first two columns with the next values: Username, Email.
831
+
832
+ The next columns are totally customizable and you can use whatever you want. All rows must contains same columns. User profile will be adapted to the kind of data you have selected. If you want to disable the extra profile information, please deactivate this plugin after make the import.
833
+
834
+ = id column =
835
+
836
+ You can use a column called id in order to make inserts or updates of an user using the ID used by WordPress in the wp_users table. We have two different cases:
837
+
838
+ * If id doesn't exist in your users table: WordPress core does not allow us insert it, so it will throw an error of kind: invalid_user_id
839
+ * If id exists: plugin check if username is the same, if yes, it will update the data, if not, it ignores the cell to avoid problems
840
+
841
+ = Passwords =
842
+
843
+ We can use a column called "Password" to manage a string that contains user passwords. We have different options for this case:
844
+
845
+ * If you don't create a column for passwords: passwords will be generated automatically
846
+ * If you create a column for passwords: if cell is empty, password won't be updated; if cell has a value, it will be used
847
+
848
+ = Serialized data =
849
+
850
+ Plugin can import serialized data. You have to use the serialized string directly in the CSV cell in order the plugin will be able to understand it as an serialized data instead as any other string.
851
+
852
+ = Lists =
853
+
854
+ Plugin can import lists as an array. Use this separator: :: two colons, inside the cell in order to split the string in a list of items.
855
+
856
+ = WordPress default profile data =
857
+
858
+ You can use those labels if you want to set data adapted to the WordPress default user columns (the ones who use the function wp_update_user)
859
+
860
+ * user_nicename: A string that contains a URL-friendly name for the user. The default is the user's username.
861
+ * user_url: A string containing the user's URL for the user's web site.
862
+ * display_name: A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through * obscurity (that is if you don't use and delete the default admin user).
863
+ * nickname: The user's nickname, defaults to the user's username.
864
+ * first_name: The user's first name.
865
+ * last_name: The user's last name.
866
+ * description: A string containing content about the user.
867
+ * jabber: User's Jabber account.
868
+ * aim: User's AOL IM account.
869
+ * yim: User's Yahoo IM account.
870
+ * user_registered: Using the WordPress format for this kind of data Y-m-d H:i:s.
871
+
872
+ = Multiple imports =
873
+
874
+ You can upload as many files as you want, but all must have the same columns. If you upload another file, the columns will change to the form of last file uploaded.
875
+
876
+ = This plugin saved me a lot of time and work. Where can I donate? =
877
+
878
+ Thanks, donations help us to continue improving our plugins and allow us to give the best support in the forums [Donate Here via PayPal.](https://codection.com/go/donate-import-users-from-csv-with-meta/)
879
+
880
+ = I'm not sure I will be able to import all users with correct data and roles. Will you do it for me? =
881
+
882
+ Of course! In Codection we help you to import, migrate, synchronized, update or any other operation you will need to do with your users. Contact us at contacto@codection.com for more information.
883
+
884
+ = Free and premium support =
885
+
886
+ You can get:
887
+
888
+ * Free support [in WordPress forums](https://wordpress.org/support/plugin/import-users-from-csv-with-meta)
889
+ * Premium support [writing directly to contacto@codection.com](mailto:contacto@codection.com).
890
+
891
+ = Customizations, addons, develops... =
892
+ [Write us directly to contacto@codection.com](mailto:contacto@codection.com).
893
+
894
+ == Installation ==
895
+
896
+ ### **Installation**
897
+
898
+ * Install **Import users from CSV with meta** automatically through the WordPress Dashboard or by uploading the ZIP file in the _plugins_ directory.
899
+ * Then, after the package is uploaded and extracted, click&nbsp;_Activate Plugin_.
900
+
901
+ Now going through the points above, you should now see a new&nbsp;_Import users from CSV_&nbsp;menu item under Tool menu in the sidebar of the admin panel, see figure below of how it looks like.
902
+
903
+ [Plugin link from dashboard](http://ps.w.org/import-users-from-csv-with-meta/assets/screenshot-1.png)
904
+
905
+ If you get any error after following through the steps above please contact us through item support comments so we can get back to you with possible helps in installing the plugin and more.
906
+
907
+ Please read documentation before start using this plugin.
trunk/test.csv ADDED
@@ -0,0 +1,2 @@
 
 
1
+ Username,Email,Password,Address,City,State,Zip code,Country,user_url
2
+ javier,javier@micorreo.com,pass,Av. Cervantes,C�rdoba,C�rdoba,14004,Espa�a,http://www.linuxhispano.net
trunk/wpml-config.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <wpml-config>
2
+ <admin-texts>
3
+ <key name="acui_mail_subject"/>
4
+ <key name="acui_mail_body"/>
5
+ </admin-texts>
6
+ <custom-types>
7
+ <custom-type translate="1">acui_email_template</custom-type>
8
+ </custom-types>
9
+ </wpml-config>