wp/wp-admin/user-new.php
author ymh <ymh.work@gmail.com>
Wed, 06 Nov 2013 03:21:17 +0000
changeset 0 d970ebf37754
child 5 5e2f62d02dcd
permissions -rw-r--r--
first import
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
 * New User Administration Screen.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
 * @package WordPress
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
 * @subpackage Administration
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
/** WordPress Administration Bootstrap */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
require_once( dirname( __FILE__ ) . '/admin.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
if ( is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
	if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
		wp_die( __( 'Cheatin&#8217; uh?' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
} elseif ( ! current_user_can( 'create_users' ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
	wp_die( __( 'Cheatin&#8217; uh?' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
if ( is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
	function admin_created_user_email( $text ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
		$roles = get_editable_roles();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
		$role = $roles[ $_REQUEST['role'] ];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
		/* translators: 1: Site name, 2: site URL, 3: role */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
		return sprintf( __( 'Hi,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
You\'ve been invited to join \'%1$s\' at
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
%2$s with the role of %3$s.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
If you do not want to join this site please ignore
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
this email. This invitation will expire in a few days.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
Please click the following link to activate your user account:
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
%%s' ), get_bloginfo( 'name' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
	add_filter( 'wpmu_signup_user_notification_email', 'admin_created_user_email' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
	function admin_created_user_subject( $text ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
		return sprintf( __( '[%s] Your site invite' ), get_bloginfo( 'name' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
if ( isset($_REQUEST['action']) && 'adduser' == $_REQUEST['action'] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
	check_admin_referer( 'add-user', '_wpnonce_add-user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
	$user_details = null;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
	if ( false !== strpos($_REQUEST[ 'email' ], '@') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
		$user_details = get_user_by('email', $_REQUEST[ 'email' ]);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
		if ( is_super_admin() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
			$user_details = get_user_by('login', $_REQUEST[ 'email' ]);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
		} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
			wp_redirect( add_query_arg( array('update' => 'enter_email'), 'user-new.php' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
			die();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
	if ( !$user_details ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
		wp_redirect( add_query_arg( array('update' => 'does_not_exist'), 'user-new.php' ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
		die();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
	if ( ! current_user_can('promote_user', $user_details->ID) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
		wp_die(__('Cheatin&#8217; uh?'));
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
	// Adding an existing user to this blog
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
	$new_user_email = $user_details->user_email;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
	$redirect = 'user-new.php';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
	$username = $user_details->user_login;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
	$user_id = $user_details->ID;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
	if ( ( $username != null && !is_super_admin( $user_id ) ) && ( array_key_exists($blog_id, get_blogs_of_user($user_id)) ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
		$redirect = add_query_arg( array('update' => 'addexisting'), 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
		if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    72
			add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST[ 'role' ] ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
			$redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
		} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
			$newuser_key = substr( md5( $user_id ), 0, 5 );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
			add_option( 'new_user_' . $newuser_key, array( 'user_id' => $user_id, 'email' => $user_details->user_email, 'role' => $_REQUEST[ 'role' ] ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    78
			$roles = get_editable_roles();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
			$role = $roles[ $_REQUEST['role'] ];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
			/* translators: 1: Site name, 2: site URL, 3: role, 4: activation URL */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
			$message = __( 'Hi,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
You\'ve been invited to join \'%1$s\' at
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
%2$s with the role of %3$s.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
Please click the following link to confirm the invite:
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
%4$s' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
			wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), get_option( 'blogname' ) ), sprintf( $message, get_option( 'blogname' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ), home_url( "/newbloguser/$newuser_key/" ) ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
			$redirect = add_query_arg( array('update' => 'add'), 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
	wp_redirect( $redirect );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
	die();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    94
} elseif ( isset($_REQUEST['action']) && 'createuser' == $_REQUEST['action'] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    95
	check_admin_referer( 'create-user', '_wpnonce_create-user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    96
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    97
	if ( ! current_user_can('create_users') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    98
		wp_die(__('Cheatin&#8217; uh?'));
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    99
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   100
	if ( ! is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
		$user_id = edit_user();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   102
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   103
		if ( is_wp_error( $user_id ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   104
			$add_user_errors = $user_id;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   105
		} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   106
			if ( current_user_can( 'list_users' ) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
				$redirect = 'users.php?update=add&id=' . $user_id;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   108
			else
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   109
				$redirect = add_query_arg( 'update', 'add', 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   110
			wp_redirect( $redirect );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   111
			die();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   112
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   113
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   114
		// Adding a new user to this site
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   115
		$user_details = wpmu_validate_user_signup( $_REQUEST[ 'user_login' ], $_REQUEST[ 'email' ] );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   116
		if ( is_wp_error( $user_details[ 'errors' ] ) && !empty( $user_details[ 'errors' ]->errors ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   117
			$add_user_errors = $user_details[ 'errors' ];
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   118
		} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   119
			/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
			 * Filter the user_login, aka the username, before it is added to the site.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
			 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   122
			 * @since 3.0.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   123
			 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   124
			 * @param string $_REQUEST['user_login'] The sanitized username.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   125
			 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   126
			$new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
			if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   128
				add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   129
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   130
			wpmu_signup_user( $new_user_login, $_REQUEST[ 'email' ], array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST[ 'role' ] ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   131
			if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   132
				$key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $_REQUEST[ 'email' ] ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   133
				wpmu_activate_signup( $key );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   134
				$redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   135
			} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   136
				$redirect = add_query_arg( array('update' => 'newuserconfirmation'), 'user-new.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   137
			}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   138
			wp_redirect( $redirect );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   139
			die();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   141
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   142
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   143
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   144
$title = __('Add New User');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   145
$parent_file = 'users.php';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   146
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   147
$do_both = false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   148
if ( is_multisite() && current_user_can('promote_users') && current_user_can('create_users') )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   149
	$do_both = true;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   150
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   151
$help = '<p>' . __('To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.') . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   152
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   153
if ( is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   154
	$help .= '<p>' . __('Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user&#8217;s name to Edit the user profile under Network Admin > All Users.') . '</p>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   155
	'<p>' . __('New users will receive an email letting them know they&#8217;ve been added as a user for your site. This email will also contain their password. Check the box if you don&#8217;t want the user to receive a welcome email.') . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   156
} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   157
	$help .= '<p>' . __('You must assign a password to the new user, which they can change after logging in. The username, however, cannot be changed.') . '</p>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   158
	'<p>' . __('New users will receive an email letting them know they&#8217;ve been added as a user for your site. By default, this email will also contain their password. Uncheck the box if you don&#8217;t want the password to be included in the welcome email.') . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   159
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   160
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   161
$help .= '<p>' . __('Remember to click the Add New User button at the bottom of this screen when you are finished.') . '</p>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   162
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   163
get_current_screen()->add_help_tab( array(
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   164
	'id'      => 'overview',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   165
	'title'   => __('Overview'),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   166
	'content' => $help,
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   167
) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   168
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   169
get_current_screen()->add_help_tab( array(
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   170
'id'      => 'user-roles',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   171
'title'   => __('User Roles'),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   172
'content' => '<p>' . __('Here is a basic overview of the different user roles and the permissions associated with each one:') . '</p>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   173
				'<ul>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   174
				'<li>' . __('Administrators have access to all the administration features.') . '</li>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   175
				'<li>' . __('Editors can publish posts, manage posts as well as manage other people&#8217;s posts, etc.') . '</li>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   176
				'<li>' . __('Authors can publish and manage their own posts, and are able to upload files.') . '</li>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   177
				'<li>' . __('Contributors can write and manage their posts but not publish posts or upload media files.') . '</li>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   178
				'<li>' . __('Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.') . '</li>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   179
				'</ul>'
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   180
) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   181
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   182
get_current_screen()->set_help_sidebar(
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   183
    '<p><strong>' . __('For more information:') . '</strong></p>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   184
    '<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   185
    '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   186
);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   187
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   188
wp_enqueue_script('wp-ajax-response');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   189
wp_enqueue_script('user-profile');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   190
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   191
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   192
 * Allows you to enable user auto-complete for non-super admins in multisite.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   193
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   194
 * @since 3.4.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   195
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   196
 * @param bool True or false, based on if you enable auto-complete for non-super admins. Default is false.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   197
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   198
if ( is_multisite() && current_user_can( 'promote_users' ) && ! wp_is_large_network( 'users' )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   199
	&& ( is_super_admin() || apply_filters( 'autocomplete_users_for_site_admins', false ) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   200
) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   201
	wp_enqueue_script( 'user-suggest' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   202
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   203
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   204
require_once( ABSPATH . 'wp-admin/admin-header.php' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   205
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   206
if ( isset($_GET['update']) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   207
	$messages = array();
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   208
	if ( is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   209
		switch ( $_GET['update'] ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   210
			case "newuserconfirmation":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   211
				$messages[] = __('Invitation email sent to new user. A confirmation link must be clicked before their account is created.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   212
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   213
			case "add":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   214
				$messages[] = __('Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   215
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   216
			case "addnoconfirmation":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   217
				$messages[] = __('User has been added to your site.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   218
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   219
			case "addexisting":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   220
				$messages[] = __('That user is already a member of this site.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   221
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   222
			case "does_not_exist":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   223
				$messages[] = __('The requested user does not exist.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   224
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
			case "enter_email":
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   226
				$messages[] = __('Please enter a valid email address.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   227
				break;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   228
		}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   229
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   230
		if ( 'add' == $_GET['update'] )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   231
			$messages[] = __('User added.');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   235
<div class="wrap">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   236
<?php screen_icon(); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   237
<h2 id="add-new-user"> <?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   238
if ( current_user_can( 'create_users' ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   239
	echo _x( 'Add New User', 'user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   240
} elseif ( current_user_can( 'promote_users' ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   241
	echo _x( 'Add Existing User', 'user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   242
} ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   243
</h2>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   244
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   245
<?php if ( isset($errors) && is_wp_error( $errors ) ) : ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   246
	<div class="error">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   247
		<ul>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   248
		<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   249
			foreach ( $errors->get_error_messages() as $err )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   250
				echo "<li>$err</li>\n";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   251
		?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   252
		</ul>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   253
	</div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   254
<?php endif;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   255
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   256
if ( ! empty( $messages ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   257
	foreach ( $messages as $msg )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   258
		echo '<div id="message" class="updated"><p>' . $msg . '</p></div>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   259
} ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   260
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   261
<?php if ( isset($add_user_errors) && is_wp_error( $add_user_errors ) ) : ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   262
	<div class="error">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   263
		<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   264
			foreach ( $add_user_errors->get_error_messages() as $message )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   265
				echo "<p>$message</p>";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   266
		?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   267
	</div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   268
<?php endif; ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   269
<div id="ajax-response"></div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   270
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   271
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   272
if ( is_multisite() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   273
	if ( $do_both )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   274
		echo '<h3 id="add-existing-user">' . __('Add Existing User') . '</h3>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   275
	if ( !is_super_admin() ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   276
		_e( 'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   277
		$label = __('E-mail');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   278
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   279
		_e( 'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   280
		$label = __('E-mail or Username');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   281
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   282
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   283
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   284
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   285
 * Fires inside the adduser form tag.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   286
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   287
 * @since 3.0.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   288
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   289
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   290
<form action="" method="post" name="adduser" id="adduser" class="validate"<?php do_action('user_new_form_tag');?>>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   291
<input name="action" type="hidden" value="adduser" />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   292
<?php wp_nonce_field( 'add-user', '_wpnonce_add-user' ) ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   293
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   294
<table class="form-table">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   295
	<tr class="form-field form-required">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   296
		<th scope="row"><label for="adduser-email"><?php echo $label; ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   297
		<td><input name="email" type="text" id="adduser-email" class="wp-suggest-user" value="" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   298
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   299
	<tr class="form-field">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   300
		<th scope="row"><label for="adduser-role"><?php _e('Role'); ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   301
		<td><select name="role" id="adduser-role">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   302
			<?php wp_dropdown_roles( get_option('default_role') ); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   303
			</select>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   304
		</td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   305
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   306
<?php if ( is_super_admin() ) { ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   307
	<tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   308
		<th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   309
		<td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   310
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   311
<?php } ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   312
</table>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   313
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   314
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   315
 * Fires at the end of the new user form.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   316
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   317
 * Passes a contextual string to make both types of new user forms
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   318
 * uniquely targetable. Contexts are 'add-existing-user' (Multisite),
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   319
 * and 'add-new-user' (single site and network admin).
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   320
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   321
 * @since 3.7.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   322
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   323
 * @param string A contextual string specifying which type of new user form the hook follows.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   324
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   325
do_action( 'user_new_form', 'add-existing-user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   326
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   327
<?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   328
</form>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   329
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   330
} // is_multisite()
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   331
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   332
if ( current_user_can( 'create_users') ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   333
	if ( $do_both )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   334
		echo '<h3 id="create-new-user">' . __( 'Add New User' ) . '</h3>';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   335
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   336
<p><?php _e('Create a brand new user and add them to this site.'); ?></p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   337
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   338
/** This action is documented in wp-admin/user-new.php */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   339
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   340
<form action="" method="post" name="createuser" id="createuser" class="validate"<?php do_action('user_new_form_tag');?>>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   341
<input name="action" type="hidden" value="createuser" />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   342
<?php wp_nonce_field( 'create-user', '_wpnonce_create-user' ); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   343
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   344
// Load up the passed data, else set to a default.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   345
foreach ( array( 'user_login' => 'login', 'first_name' => 'firstname', 'last_name' => 'lastname',
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   346
				'email' => 'email', 'url' => 'uri', 'role' => 'role', 'send_password' => 'send_password', 'noconfirmation' => 'ignore_pass' ) as $post_field => $var ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   347
	$var = "new_user_$var";
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   348
	if( isset( $_POST['createuser'] ) ) {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   349
		if ( ! isset($$var) )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   350
			$$var = isset( $_POST[$post_field] ) ? wp_unslash( $_POST[$post_field] ) : '';
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   351
	} else {
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   352
		$$var = false;
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   353
	}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   354
}
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   355
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   356
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   357
<table class="form-table">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   358
	<tr class="form-field form-required">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   359
		<th scope="row"><label for="user_login"><?php _e('Username'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   360
		<td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr($new_user_login); ?>" aria-required="true" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   361
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   362
	<tr class="form-field form-required">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   363
		<th scope="row"><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   364
		<td><input name="email" type="text" id="email" value="<?php echo esc_attr($new_user_email); ?>" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   365
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   366
<?php if ( !is_multisite() ) { ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   367
	<tr class="form-field">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   368
		<th scope="row"><label for="first_name"><?php _e('First Name') ?> </label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   369
		<td><input name="first_name" type="text" id="first_name" value="<?php echo esc_attr($new_user_firstname); ?>" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   370
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   371
	<tr class="form-field">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   372
		<th scope="row"><label for="last_name"><?php _e('Last Name') ?> </label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   373
		<td><input name="last_name" type="text" id="last_name" value="<?php echo esc_attr($new_user_lastname); ?>" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   374
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   375
	<tr class="form-field">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   376
		<th scope="row"><label for="url"><?php _e('Website') ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   377
		<td><input name="url" type="text" id="url" class="code" value="<?php echo esc_attr($new_user_uri); ?>" /></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   378
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   379
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   380
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   381
 * Filter the display of the password fields.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   382
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   383
 * @since 1.5.1
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   384
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   385
 * @param bool True or false, based on if you want to show the password fields. Default is true.
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   386
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   387
if ( apply_filters( 'show_password_fields', true ) ) : ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   388
	<tr class="form-field form-required">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   389
		<th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   390
		<td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   391
			<input class="hidden" value=" " /><!-- #24364 workaround -->
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   392
			<input name="pass1" type="password" id="pass1" autocomplete="off" />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   393
		</td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   394
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   395
	<tr class="form-field form-required">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   396
		<th scope="row"><label for="pass2"><?php _e('Repeat Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   397
		<td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   398
		<input name="pass2" type="password" id="pass2" autocomplete="off" />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   399
		<br />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   400
		<div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   401
		<p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   402
		</td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   403
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   404
	<tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   405
		<th scope="row"><label for="send_password"><?php _e('Send Password?') ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   406
		<td><label for="send_password"><input type="checkbox" name="send_password" id="send_password" <?php checked( $new_user_send_password ); ?> /> <?php _e('Send this password to the new user by email.'); ?></label></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   407
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   408
<?php endif; ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   409
<?php } // !is_multisite ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   410
	<tr class="form-field">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   411
		<th scope="row"><label for="role"><?php _e('Role'); ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   412
		<td><select name="role" id="role">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   413
			<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   414
			if ( !$new_user_role )
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   415
				$new_user_role = !empty($current_role) ? $current_role : get_option('default_role');
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   416
			wp_dropdown_roles($new_user_role);
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   417
			?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   418
			</select>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   419
		</td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   420
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   421
	<?php if ( is_multisite() && is_super_admin() ) { ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   422
	<tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   423
		<th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   424
		<td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   425
	</tr>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   426
	<?php } ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   427
</table>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   428
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   429
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   430
/** This action is documented in wp-admin/user-new.php */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   431
do_action( 'user_new_form', 'add-new-user' );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   432
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   433
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   434
<?php submit_button( __( 'Add New User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   435
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   436
</form>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   437
<?php } // current_user_can('create_users') ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   438
</div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   439
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
   440
include( ABSPATH . 'wp-admin/admin-footer.php' );