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