]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/user-edit.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-admin / user-edit.php
1 <?php
2 /**
3  * Edit user administration panel.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 wp_reset_vars( array( 'action', 'user_id', 'wp_http_referer' ) );
13
14 $user_id = (int) $user_id;
15 $current_user = wp_get_current_user();
16 if ( ! defined( 'IS_PROFILE_PAGE' ) )
17         define( 'IS_PROFILE_PAGE', ( $user_id == $current_user->ID ) );
18
19 if ( ! $user_id && IS_PROFILE_PAGE )
20         $user_id = $current_user->ID;
21 elseif ( ! $user_id && ! IS_PROFILE_PAGE )
22         wp_die(__( 'Invalid user ID.' ) );
23 elseif ( ! get_userdata( $user_id ) )
24         wp_die( __('Invalid user ID.') );
25
26 wp_enqueue_script('user-profile');
27
28 $title = IS_PROFILE_PAGE ? __('Profile') : __('Edit User');
29 if ( current_user_can('edit_users') && !IS_PROFILE_PAGE )
30         $submenu_file = 'users.php';
31 else
32         $submenu_file = 'profile.php';
33
34 if ( current_user_can('edit_users') && !is_user_admin() )
35         $parent_file = 'users.php';
36 else
37         $parent_file = 'profile.php';
38
39 $profile_help = '<p>' . __('Your profile contains information about you (your &#8220;account&#8221;) as well as some personal options related to using WordPress.') . '</p>' .
40         '<p>' . __('You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.') . '</p>' .
41         '<p>' . __('Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.') . '</p>' .
42         '<p>' . __( 'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.' ) . '</p>' .
43         '<p>' . __('Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.') . '</p>' .
44         '<p>' . __('Remember to click the Update Profile button when you are finished.') . '</p>';
45
46 get_current_screen()->add_help_tab( array(
47         'id'      => 'overview',
48         'title'   => __('Overview'),
49         'content' => $profile_help,
50 ) );
51
52 get_current_screen()->set_help_sidebar(
53     '<p><strong>' . __('For more information:') . '</strong></p>' .
54     '<p>' . __('<a href="https://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .
55     '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
56 );
57
58 $wp_http_referer = remove_query_arg(array('update', 'delete_count'), $wp_http_referer );
59
60 $user_can_edit = current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' );
61
62 /**
63  * Filter whether to allow administrators on Multisite to edit every user.
64  *
65  * Enabling the user editing form via this filter also hinges on the user holding
66  * the 'manage_network_users' cap, and the logged-in user not matching the user
67  * profile open for editing.
68  *
69  * The filter was introduced to replace the EDIT_ANY_USER constant.
70  *
71  * @since 3.0.0
72  *
73  * @param bool $allow Whether to allow editing of any user. Default true.
74  */
75 if ( is_multisite()
76         && ! current_user_can( 'manage_network_users' )
77         && $user_id != $current_user->ID
78         && ! apply_filters( 'enable_edit_any_user_configuration', true )
79 ) {
80         wp_die( __( 'You do not have permission to edit this user.' ) );
81 }
82
83 // Execute confirmed email change. See send_confirmation_on_profile_email().
84 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) {
85         $new_email = get_option( $current_user->ID . '_new_email' );
86         if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) {
87                 $user = new stdClass;
88                 $user->ID = $current_user->ID;
89                 $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) );
90                 if ( $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) )
91                         $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $user->user_email, $current_user->user_login ) );
92                 wp_update_user( $user );
93                 delete_option( $current_user->ID . '_new_email' );
94                 wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
95                 die();
96         }
97 } elseif ( is_multisite() && IS_PROFILE_PAGE && !empty( $_GET['dismiss'] ) && $current_user->ID . '_new_email' == $_GET['dismiss'] ) {
98         delete_option( $current_user->ID . '_new_email' );
99         wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
100         die();
101 }
102
103 switch ($action) {
104 case 'update':
105
106 check_admin_referer('update-user_' . $user_id);
107
108 if ( !current_user_can('edit_user', $user_id) )
109         wp_die(__('You do not have permission to edit this user.'));
110
111 if ( IS_PROFILE_PAGE ) {
112         /**
113          * Fires before the page loads on the 'Your Profile' editing screen.
114          *
115          * The action only fires if the current user is editing their own profile.
116          *
117          * @since 2.0.0
118          *
119          * @param int $user_id The user ID.
120          */
121         do_action( 'personal_options_update', $user_id );
122 } else {
123         /**
124          * Fires before the page loads on the 'Edit User' screen.
125          *
126          * @since 2.7.0
127          *
128          * @param int $user_id The user ID.
129          */
130         do_action( 'edit_user_profile_update', $user_id );
131 }
132
133 // Update the email address in signups, if present.
134 if ( is_multisite() ) {
135         $user = get_userdata( $user_id );
136
137         if ( $user->user_login && isset( $_POST[ 'email' ] ) && is_email( $_POST[ 'email' ] ) && $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $user->user_login ) ) ) {
138                 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) );
139         }
140 }
141
142 // Update the user.
143 $errors = edit_user( $user_id );
144
145 // Grant or revoke super admin status if requested.
146 if ( is_multisite() && is_network_admin() && !IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) && empty( $_POST['super_admin'] ) == is_super_admin( $user_id ) ) {
147         empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id );
148 }
149
150 if ( !is_wp_error( $errors ) ) {
151         $redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) );
152         if ( $wp_http_referer )
153                 $redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
154         wp_redirect($redirect);
155         exit;
156 }
157
158 default:
159 $profileuser = get_user_to_edit($user_id);
160
161 if ( !current_user_can('edit_user', $user_id) )
162         wp_die(__('You do not have permission to edit this user.'));
163
164 $sessions = WP_Session_Tokens::get_instance( $profileuser->ID );
165
166 include(ABSPATH . 'wp-admin/admin-header.php');
167 ?>
168
169 <?php if ( !IS_PROFILE_PAGE && is_super_admin( $profileuser->ID ) && current_user_can( 'manage_network_options' ) ) { ?>
170         <div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has super admin privileges.'); ?></p></div>
171 <?php } ?>
172 <?php if ( isset($_GET['updated']) ) : ?>
173 <div id="message" class="updated notice is-dismissible">
174         <?php if ( IS_PROFILE_PAGE ) : ?>
175         <p><strong><?php _e('Profile updated.') ?></strong></p>
176         <?php else: ?>
177         <p><strong><?php _e('User updated.') ?></strong></p>
178         <?php endif; ?>
179         <?php if ( $wp_http_referer && !IS_PROFILE_PAGE ) : ?>
180         <p><a href="<?php echo esc_url( $wp_http_referer ); ?>"><?php _e('&larr; Back to Users'); ?></a></p>
181         <?php endif; ?>
182 </div>
183 <?php endif; ?>
184 <?php if ( isset( $errors ) && is_wp_error( $errors ) ) : ?>
185 <div class="error"><p><?php echo implode( "</p>\n<p>", $errors->get_error_messages() ); ?></p></div>
186 <?php endif; ?>
187
188 <div class="wrap" id="profile-page">
189 <h1>
190 <?php
191 echo esc_html( $title );
192 if ( ! IS_PROFILE_PAGE ) {
193         if ( current_user_can( 'create_users' ) ) { ?>
194                 <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
195         <?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
196                 <a href="user-new.php" class="page-title-action"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
197         <?php }
198 } ?>
199 </h1>
200 <form id="your-profile" action="<?php echo esc_url( self_admin_url( IS_PROFILE_PAGE ? 'profile.php' : 'user-edit.php' ) ); ?>" method="post" novalidate="novalidate"<?php
201         /**
202          * Fires inside the your-profile form tag on the user editing screen.
203          *
204          * @since 3.0.0
205          */
206         do_action( 'user_edit_form_tag' );
207 ?>>
208 <?php wp_nonce_field('update-user_' . $user_id) ?>
209 <?php if ( $wp_http_referer ) : ?>
210         <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" />
211 <?php endif; ?>
212 <p>
213 <input type="hidden" name="from" value="profile" />
214 <input type="hidden" name="checkuser_id" value="<?php echo get_current_user_id(); ?>" />
215 </p>
216
217 <h2><?php _e( 'Personal Options' ); ?></h2>
218
219 <table class="form-table">
220 <?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) ) : ?>
221         <tr class="user-rich-editing-wrap">
222                 <th scope="row"><?php _e( 'Visual Editor' ); ?></th>
223                 <td><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="false" <?php if ( ! empty( $profileuser->rich_editing ) ) checked( 'false', $profileuser->rich_editing ); ?> /> <?php _e( 'Disable the visual editor when writing' ); ?></label></td>
224         </tr>
225 <?php endif; ?>
226 <?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?>
227 <tr class="user-admin-color-wrap">
228 <th scope="row"><?php _e('Admin Color Scheme')?></th>
229 <td><?php
230         /**
231          * Fires in the 'Admin Color Scheme' section of the user editing screen.
232          *
233          * The section is only enabled if a callback is hooked to the action,
234          * and if there is more than one defined color scheme for the admin.
235          *
236          * @since 3.0.0
237          * @since 3.8.1 Added `$user_id` parameter.
238          *
239          * @param int $user_id The user ID.
240          */
241         do_action( 'admin_color_scheme_picker', $user_id );
242 ?></td>
243 </tr>
244 <?php
245 endif; // $_wp_admin_css_colors
246 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
247 <tr class="user-comment-shortcuts-wrap">
248 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
249 <td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( ! empty( $profileuser->comment_shortcuts ) ) checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="https://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td>
250 </tr>
251 <?php endif; ?>
252 <tr class="show-admin-bar user-admin-bar-front-wrap">
253 <th scope="row"><?php _e( 'Toolbar' ); ?></th>
254 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend>
255 <label for="admin_bar_front">
256 <input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> />
257 <?php _e( 'Show Toolbar when viewing site' ); ?></label><br />
258 </fieldset>
259 </td>
260 </tr>
261 <?php
262 /**
263  * Fires at the end of the 'Personal Options' settings table on the user editing screen.
264  *
265  * @since 2.7.0
266  *
267  * @param WP_User $profileuser The current WP_User object.
268  */
269 do_action( 'personal_options', $profileuser );
270 ?>
271
272 </table>
273 <?php
274         if ( IS_PROFILE_PAGE ) {
275                 /**
276                  * Fires after the 'Personal Options' settings table on the 'Your Profile' editing screen.
277                  *
278                  * The action only fires if the current user is editing their own profile.
279                  *
280                  * @since 2.0.0
281                  *
282                  * @param WP_User $profileuser The current WP_User object.
283                  */
284                 do_action( 'profile_personal_options', $profileuser );
285         }
286 ?>
287
288 <h2><?php _e( 'Name' ); ?></h2>
289
290 <table class="form-table">
291         <tr class="user-user-login-wrap">
292                 <th><label for="user_login"><?php _e('Username'); ?></label></th>
293                 <td><input type="text" name="user_login" id="user_login" value="<?php echo esc_attr($profileuser->user_login); ?>" disabled="disabled" class="regular-text" /> <span class="description"><?php _e('Usernames cannot be changed.'); ?></span></td>
294         </tr>
295
296 <?php if ( !IS_PROFILE_PAGE && !is_network_admin() ) : ?>
297 <tr class="user-role-wrap"><th><label for="role"><?php _e('Role') ?></label></th>
298 <td><select name="role" id="role">
299 <?php
300 // Compare user role against currently editable roles
301 $user_roles = array_intersect( array_values( $profileuser->roles ), array_keys( get_editable_roles() ) );
302 $user_role  = reset( $user_roles );
303
304 // print the full list of roles with the primary one selected.
305 wp_dropdown_roles($user_role);
306
307 // print the 'no role' option. Make it selected if the user has no role yet.
308 if ( $user_role )
309         echo '<option value="">' . __('&mdash; No role for this site &mdash;') . '</option>';
310 else
311         echo '<option value="" selected="selected">' . __('&mdash; No role for this site &mdash;') . '</option>';
312 ?>
313 </select></td></tr>
314 <?php endif; //!IS_PROFILE_PAGE
315
316 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?>
317 <tr class="user-super-admin-wrap"><th><?php _e('Super Admin'); ?></th>
318 <td>
319 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?>
320 <p><label><input type="checkbox" id="super_admin" name="super_admin"<?php checked( is_super_admin( $profileuser->ID ) ); ?> /> <?php _e( 'Grant this user super admin privileges for the Network.' ); ?></label></p>
321 <?php else : ?>
322 <p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
323 <?php endif; ?>
324 </td></tr>
325 <?php } ?>
326
327 <tr class="user-first-name-wrap">
328         <th><label for="first_name"><?php _e('First Name') ?></label></th>
329         <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td>
330 </tr>
331
332 <tr class="user-last-name-wrap">
333         <th><label for="last_name"><?php _e('Last Name') ?></label></th>
334         <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td>
335 </tr>
336
337 <tr class="user-nickname-wrap">
338         <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
339         <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td>
340 </tr>
341
342 <tr class="user-display-name-wrap">
343         <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th>
344         <td>
345                 <select name="display_name" id="display_name">
346                 <?php
347                         $public_display = array();
348                         $public_display['display_nickname']  = $profileuser->nickname;
349                         $public_display['display_username']  = $profileuser->user_login;
350
351                         if ( !empty($profileuser->first_name) )
352                                 $public_display['display_firstname'] = $profileuser->first_name;
353
354                         if ( !empty($profileuser->last_name) )
355                                 $public_display['display_lastname'] = $profileuser->last_name;
356
357                         if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) {
358                                 $public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
359                                 $public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
360                         }
361
362                         if ( !in_array( $profileuser->display_name, $public_display ) ) // Only add this if it isn't duplicated elsewhere
363                                 $public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
364
365                         $public_display = array_map( 'trim', $public_display );
366                         $public_display = array_unique( $public_display );
367
368                         foreach ( $public_display as $id => $item ) {
369                 ?>
370                         <option <?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
371                 <?php
372                         }
373                 ?>
374                 </select>
375         </td>
376 </tr>
377 </table>
378
379 <h2><?php _e( 'Contact Info' ); ?></h2>
380
381 <table class="form-table">
382 <tr class="user-email-wrap">
383         <th><label for="email"><?php _e('Email'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
384         <td><input type="email" name="email" id="email" value="<?php echo esc_attr( $profileuser->user_email ) ?>" class="regular-text ltr" />
385         <?php
386         $new_email = get_option( $current_user->ID . '_new_email' );
387         if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID == $current_user->ID ) : ?>
388         <div class="updated inline">
389         <p><?php
390                 printf(
391                         __( 'There is a pending change of your email to %1$s. <a href="%2$s">Cancel</a>' ),
392                         '<code>' . $new_email['newemail'] . '</code>',
393                         esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) )
394         ); ?></p>
395         </div>
396         <?php endif; ?>
397         </td>
398 </tr>
399
400 <tr class="user-url-wrap">
401         <th><label for="url"><?php _e('Website') ?></label></th>
402         <td><input type="url" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ) ?>" class="regular-text code" /></td>
403 </tr>
404
405 <?php
406         foreach ( wp_get_user_contact_methods( $profileuser ) as $name => $desc ) {
407 ?>
408 <tr class="user-<?php echo $name; ?>-wrap">
409         <th><label for="<?php echo $name; ?>">
410                 <?php
411                 /**
412                  * Filter a user contactmethod label.
413                  *
414                  * The dynamic portion of the filter hook, `$name`, refers to
415                  * each of the keys in the contactmethods array.
416                  *
417                  * @since 2.9.0
418                  *
419                  * @param string $desc The translatable label for the contactmethod.
420                  */
421                 echo apply_filters( "user_{$name}_label", $desc );
422                 ?>
423         </label></th>
424         <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td>
425 </tr>
426 <?php
427         }
428 ?>
429 </table>
430
431 <h2><?php IS_PROFILE_PAGE ? _e( 'About Yourself' ) : _e( 'About the user' ); ?></h2>
432
433 <table class="form-table">
434 <tr class="user-description-wrap">
435         <th><label for="description"><?php _e('Biographical Info'); ?></label></th>
436         <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea>
437         <p class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></p></td>
438 </tr>
439
440 <?php if ( get_option( 'show_avatars' ) ) : ?>
441 <tr class="user-profile-picture">
442         <th><?php _e( 'Profile Picture' ); ?></th>
443         <td>
444                 <?php echo get_avatar( $user_id ); ?>
445                 <p class="description"><?php
446                         if ( IS_PROFILE_PAGE ) {
447                                 /* translators: %s: Gravatar URL */
448                                 $description = sprintf( __( 'You can change your profile picture on <a href="%s">Gravatar</a>.' ),
449                                         __( 'https://en.gravatar.com/' )
450                                 );
451                         } else {
452                                 $description = '';
453                         }
454
455                         /**
456                          * Filter the user profile picture description displayed under the Gravatar.
457                          *
458                          * @since 4.4.0
459                          *
460                          * @param string $description The description that will be printed.
461                          */
462                         echo apply_filters( 'user_profile_picture_description', $description );
463                 ?></p>
464         </td>
465 </tr>
466 <?php endif; ?>
467
468 <?php
469 /**
470  * Filter the display of the password fields.
471  *
472  * @since 1.5.1
473  * @since 2.8.0 Added the `$profileuser` parameter.
474  * @since 4.4.0 Now evaluated only in user-edit.php.
475  *
476  * @param bool    $show        Whether to show the password fields. Default true.
477  * @param WP_User $profileuser User object for the current user to edit.
478  */
479 if ( $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ) ) :
480 ?>
481 </table>
482
483 <h2><?php _e( 'Account Management' ); ?></h2>
484 <table class="form-table">
485 <tr id="password" class="user-pass1-wrap">
486         <th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
487         <td>
488                 <input class="hidden" value=" " /><!-- #24364 workaround -->
489                 <button type="button" class="button button-secondary wp-generate-pw hide-if-no-js"><?php _e( 'Generate Password' ); ?></button>
490                 <div class="wp-pwd hide-if-js">
491                         <span class="password-input-wrapper">
492                                 <input type="password" name="pass1" id="pass1" class="regular-text" value="" autocomplete="off" data-pw="<?php echo esc_attr( wp_generate_password( 24 ) ); ?>" aria-describedby="pass-strength-result" />
493                         </span>
494                         <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' ); ?>">
495                                 <span class="dashicons dashicons-hidden"></span>
496                                 <span class="text"><?php _e( 'Hide' ); ?></span>
497                         </button>
498                         <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' ); ?>">
499                                 <span class="text"><?php _e( 'Cancel' ); ?></span>
500                         </button>
501                         <div style="display:none" id="pass-strength-result" aria-live="polite"></div>
502                 </div>
503         </td>
504 </tr>
505 <tr class="user-pass2-wrap hide-if-js">
506         <th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
507         <td>
508         <input name="pass2" type="password" id="pass2" class="regular-text" value="" autocomplete="off" />
509         <p class="description"><?php _e( 'Type your new password again.' ); ?></p>
510         </td>
511 </tr>
512 <tr class="pw-weak">
513         <th><?php _e( 'Confirm Password' ); ?></th>
514         <td>
515                 <label>
516                         <input type="checkbox" name="pw_weak" class="pw-checkbox" />
517                         <?php _e( 'Confirm use of weak password' ); ?>
518                 </label>
519         </td>
520 </tr>
521 <?php endif; ?>
522
523 <?php
524 if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
525         <tr class="user-sessions-wrap hide-if-no-js">
526                 <th><?php _e( 'Sessions' ); ?></th>
527                 <td aria-live="assertive">
528                         <div class="destroy-sessions"><button type="button" disabled class="button button-secondary"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
529                         <p class="description">
530                                 <?php _e( 'You are only logged in at this location.' ); ?>
531                         </p>
532                 </td>
533         </tr>
534 <?php elseif ( IS_PROFILE_PAGE && count( $sessions->get_all() ) > 1 ) : ?>
535         <tr class="user-sessions-wrap hide-if-no-js">
536                 <th><?php _e( 'Sessions' ); ?></th>
537                 <td aria-live="assertive">
538                         <div class="destroy-sessions"><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere Else' ); ?></button></div>
539                         <p class="description">
540                                 <?php _e( 'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.' ); ?>
541                         </p>
542                 </td>
543         </tr>
544 <?php elseif ( ! IS_PROFILE_PAGE && $sessions->get_all() ) : ?>
545         <tr class="user-sessions-wrap hide-if-no-js">
546                 <th><?php _e( 'Sessions' ); ?></th>
547                 <td>
548                         <p><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out Everywhere' ); ?></button></p>
549                         <p class="description">
550                                 <?php
551                                 /* translators: 1: User's display name. */
552                                 printf( __( 'Log %s out of all locations.' ), $profileuser->display_name );
553                                 ?>
554                         </p>
555                 </td>
556         </tr>
557 <?php endif; ?>
558
559 </table>
560
561 <?php
562         if ( IS_PROFILE_PAGE ) {
563                 /**
564                  * Fires after the 'About Yourself' settings table on the 'Your Profile' editing screen.
565                  *
566                  * The action only fires if the current user is editing their own profile.
567                  *
568                  * @since 2.0.0
569                  *
570                  * @param WP_User $profileuser The current WP_User object.
571                  */
572                 do_action( 'show_user_profile', $profileuser );
573         } else {
574                 /**
575                  * Fires after the 'About the User' settings table on the 'Edit User' screen.
576                  *
577                  * @since 2.0.0
578                  *
579                  * @param WP_User $profileuser The current WP_User object.
580                  */
581                 do_action( 'edit_user_profile', $profileuser );
582         }
583 ?>
584
585 <?php
586 /**
587  * Filter whether to display additional capabilities for the user.
588  *
589  * The 'Additional Capabilities' section will only be enabled if
590  * the number of the user's capabilities exceeds their number of
591  * roles.
592  *
593  * @since 2.8.0
594  *
595  * @param bool    $enable      Whether to display the capabilities. Default true.
596  * @param WP_User $profileuser The current WP_User object.
597  */
598 if ( count( $profileuser->caps ) > count( $profileuser->roles )
599         && apply_filters( 'additional_capabilities_display', true, $profileuser )
600 ) : ?>
601 <h2><?php _e( 'Additional Capabilities' ); ?></h2>
602 <table class="form-table">
603 <tr class="user-capabilities-wrap">
604         <th scope="row"><?php _e( 'Capabilities' ); ?></th>
605         <td>
606 <?php
607         $output = '';
608         foreach ( $profileuser->caps as $cap => $value ) {
609                 if ( ! $wp_roles->is_role( $cap ) ) {
610                         if ( '' != $output )
611                                 $output .= ', ';
612                         $output .= $value ? $cap : sprintf( __( 'Denied: %s' ), $cap );
613                 }
614         }
615         echo $output;
616 ?>
617         </td>
618 </tr>
619 </table>
620 <?php endif; ?>
621
622 <input type="hidden" name="action" value="update" />
623 <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr($user_id); ?>" />
624
625 <?php submit_button( IS_PROFILE_PAGE ? __('Update Profile') : __('Update User') ); ?>
626
627 </form>
628 </div>
629 <?php
630 break;
631 }
632 ?>
633 <script type="text/javascript">
634         if (window.location.hash == '#password') {
635                 document.getElementById('pass1').focus();
636         }
637 </script>
638 <?php
639 include( ABSPATH . 'wp-admin/admin-footer.php');