forked from sorich87/import-users-from-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport_cli.php
58 lines (51 loc) · 1.5 KB
/
import_cli.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
* Implements import command.
*/
class ImportUsers_Command extends WP_CLI_Command {
/**
* Imports a CSV file full of users.
*
* ## OPTIONS
*
* <file>
* : The CSV file .
*
* --update
* : Update existing users
*
* --nag
* : Display the password nag to new users
*
* --welcome
* : Send a welcome email to new users
*
* ## EXAMPLES
*
* wp importUsers user.csv --welcome
*
* @synopsis <file> [--update] [--nag] [--welcome]
*/
function __invoke( $args, $assoc_args ) {
list( $filename ) = $args;
$password_nag = isset($assoc_args['nag']);
$users_update = isset($assoc_args['update']);
$new_user_notification = isset($assoc_args['welcome']);
if (file_exists($filename)) {
$results = IS_IU_Import_Users::import_csv( $filename, array(
'password_nag' => $password_nag,
'new_user_notification' => $new_user_notification,
'users_update' => $users_update
) );
// No users imported?
WP_CLI::line( count($results['user_ids'])." users imported");
// Some users imported?
foreach ($results['errors'] as $error ) {
WP_CLI::line( $error." not imported");
}
}
else
WP_CLI::line( "File does not exist: $filename");
}
}
WP_CLI::add_command( 'importUsers', 'ImportUsers_Command' );