]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/user-edit.php
WordPress 4.2-scripts
[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 of All Other Sessions 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  * Optional SSL preference that can be turned on by hooking to the 'personal_options' action.
64  *
65  * @since 2.7.0
66  *
67  * @param object $user User data object
68  */
69 function use_ssl_preference($user) {
70 ?>
71         <tr class="user-use-ssl-wrap">
72                 <th scope="row"><?php _e('Use https')?></th>
73                 <td><label for="use_ssl"><input name="use_ssl" type="checkbox" id="use_ssl" value="1" <?php checked('1', $user->use_ssl); ?> /> <?php _e('Always use https when visiting the admin'); ?></label></td>
74         </tr>
75 <?php
76 }
77
78 /**
79  * Filter whether to allow administrators on Multisite to edit every user.
80  *
81  * Enabling the user editing form via this filter also hinges on the user holding
82  * the 'manage_network_users' cap, and the logged-in user not matching the user
83  * profile open for editing.
84  *
85  * The filter was introduced to replace the EDIT_ANY_USER constant.
86  *
87  * @since 3.0.0
88  *
89  * @param bool $allow Whether to allow editing of any user. Default true.
90  */
91 if ( is_multisite()
92         && ! current_user_can( 'manage_network_users' )
93         && $user_id != $current_user->ID
94         && ! apply_filters( 'enable_edit_any_user_configuration', true )
95 ) {
96         wp_die( __( 'You do not have permission to edit this user.' ) );
97 }
98
99 // Execute confirmed email change. See send_confirmation_on_profile_email().
100 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) {
101         $new_email = get_option( $current_user->ID . '_new_email' );
102         if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) {
103                 $user = new stdClass;
104                 $user->ID = $current_user->ID;
105                 $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) );
106                 if ( $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) )
107                         $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $user->user_email, $current_user->user_login ) );
108                 wp_update_user( $user );
109                 delete_option( $current_user->ID . '_new_email' );
110                 wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
111                 die();
112         }
113 } elseif ( is_multisite() && IS_PROFILE_PAGE && !empty( $_GET['dismiss'] ) && $current_user->ID . '_new_email' == $_GET['dismiss'] ) {
114         delete_option( $current_user->ID . '_new_email' );
115         wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
116         die();
117 }
118
119 switch ($action) {
120 case 'update':
121
122 check_admin_referer('update-user_' . $user_id);
123
124 if ( !current_user_can('edit_user', $user_id) )
125         wp_die(__('You do not have permission to edit this user.'));
126
127 if ( IS_PROFILE_PAGE ) {
128         /**
129          * Fires before the page loads on the 'Your Profile' editing screen.
130          *
131          * The action only fires if the current user is editing their own profile.
132          *
133          * @since 2.0.0
134          *
135          * @param int $user_id The user ID.
136          */
137         do_action( 'personal_options_update', $user_id );
138 } else {
139         /**
140          * Fires before the page loads on the 'Edit User' screen.
141          *
142          * @since 2.7.0
143          *
144          * @param int $user_id The user ID.
145          */
146         do_action( 'edit_user_profile_update', $user_id );
147 }
148
149 // Update the email address in signups, if present.
150 if ( is_multisite() ) {
151         $user = get_userdata( $user_id );
152
153         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 ) ) ) {
154                 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) );
155         }
156 }
157
158 // Update the user.
159 $errors = edit_user( $user_id );
160
161 // Grant or revoke super admin status if requested.
162 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 ) ) {
163         empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id );
164 }
165
166 if ( !is_wp_error( $errors ) ) {
167         $redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) );
168         if ( $wp_http_referer )
169                 $redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
170         wp_redirect($redirect);
171         exit;
172 }
173
174 default:
175 $profileuser = get_user_to_edit($user_id);
176
177 if ( !current_user_can('edit_user', $user_id) )
178         wp_die(__('You do not have permission to edit this user.'));
179
180 $sessions = WP_Session_Tokens::get_instance( $profileuser->ID );
181
182 include(ABSPATH . 'wp-admin/admin-header.php');
183 ?>
184
185 <?php if ( !IS_PROFILE_PAGE && is_super_admin( $profileuser->ID ) && current_user_can( 'manage_network_options' ) ) { ?>
186         <div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has super admin privileges.'); ?></p></div>
187 <?php } ?>
188 <?php if ( isset($_GET['updated']) ) : ?>
189 <div id="message" class="updated notice is-dismissible">
190         <?php if ( IS_PROFILE_PAGE ) : ?>
191         <p><strong><?php _e('Profile updated.') ?></strong></p>
192         <?php else: ?>
193         <p><strong><?php _e('User updated.') ?></strong></p>
194         <?php endif; ?>
195         <?php if ( $wp_http_referer && !IS_PROFILE_PAGE ) : ?>
196         <p><a href="<?php echo esc_url( $wp_http_referer ); ?>"><?php _e('&larr; Back to Users'); ?></a></p>
197         <?php endif; ?>
198 </div>
199 <?php endif; ?>
200 <?php if ( isset( $errors ) && is_wp_error( $errors ) ) : ?>
201 <div class="error"><p><?php echo implode( "</p>\n<p>", $errors->get_error_messages() ); ?></p></div>
202 <?php endif; ?>
203
204 <div class="wrap" id="profile-page">
205 <h2>
206 <?php
207 echo esc_html( $title );
208 if ( ! IS_PROFILE_PAGE ) {
209         if ( current_user_can( 'create_users' ) ) { ?>
210                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
211         <?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
212                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
213         <?php }
214 } ?>
215 </h2>
216 <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
217         /**
218          * Fires inside the your-profile form tag on the user editing screen.
219          *
220          * @since 3.0.0
221          */
222         do_action( 'user_edit_form_tag' );
223 ?>>
224 <?php wp_nonce_field('update-user_' . $user_id) ?>
225 <?php if ( $wp_http_referer ) : ?>
226         <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" />
227 <?php endif; ?>
228 <p>
229 <input type="hidden" name="from" value="profile" />
230 <input type="hidden" name="checkuser_id" value="<?php echo get_current_user_id(); ?>" />
231 </p>
232
233 <h3><?php _e('Personal Options'); ?></h3>
234
235 <table class="form-table">
236 <?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) ) : ?>
237         <tr class="user-rich-editing-wrap">
238                 <th scope="row"><?php _e( 'Visual Editor' ); ?></th>
239                 <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>
240         </tr>
241 <?php endif; ?>
242 <?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?>
243 <tr class="user-admin-color-wrap">
244 <th scope="row"><?php _e('Admin Color Scheme')?></th>
245 <td><?php
246         /**
247          * Fires in the 'Admin Color Scheme' section of the user editing screen.
248          *
249          * The section is only enabled if a callback is hooked to the action,
250          * and if there is more than one defined color scheme for the admin.
251          *
252          * @since 3.0.0
253          * @since 3.8.1 Added `$user_id` parameter.
254          *
255          * @param int $user_id The user ID.
256          */
257         do_action( 'admin_color_scheme_picker', $user_id );
258 ?></td>
259 </tr>
260 <?php
261 endif; // $_wp_admin_css_colors
262 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
263 <tr class="user-comment-shortcuts-wrap">
264 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
265 <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>
266 </tr>
267 <?php endif; ?>
268 <tr class="show-admin-bar user-admin-bar-front-wrap">
269 <th scope="row"><?php _e( 'Toolbar' ); ?></th>
270 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend>
271 <label for="admin_bar_front">
272 <input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> />
273 <?php _e( 'Show Toolbar when viewing site' ); ?></label><br />
274 </fieldset>
275 </td>
276 </tr>
277 <?php
278 /**
279  * Fires at the end of the 'Personal Options' settings table on the user editing screen.
280  *
281  * @since 2.7.0
282  *
283  * @param WP_User $profileuser The current WP_User object.
284  */
285 do_action( 'personal_options', $profileuser );
286 ?>
287
288 </table>
289 <?php
290         if ( IS_PROFILE_PAGE ) {
291                 /**
292                  * Fires after the 'Personal Options' settings table on the 'Your Profile' editing screen.
293                  *
294                  * The action only fires if the current user is editing their own profile.
295                  *
296                  * @since 2.0.0
297                  *
298                  * @param WP_User $profileuser The current WP_User object.
299                  */
300                 do_action( 'profile_personal_options', $profileuser );
301         }
302 ?>
303
304 <h3><?php _e('Name') ?></h3>
305
306 <table class="form-table">
307         <tr class="user-user-login-wrap">
308                 <th><label for="user_login"><?php _e('Username'); ?></label></th>
309                 <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>
310         </tr>
311
312 <?php if ( !IS_PROFILE_PAGE && !is_network_admin() ) : ?>
313 <tr class="user-role-wrap"><th><label for="role"><?php _e('Role') ?></label></th>
314 <td><select name="role" id="role">
315 <?php
316 // Compare user role against currently editable roles
317 $user_roles = array_intersect( array_values( $profileuser->roles ), array_keys( get_editable_roles() ) );
318 $user_role  = reset( $user_roles );
319
320 // print the full list of roles with the primary one selected.
321 wp_dropdown_roles($user_role);
322
323 // print the 'no role' option. Make it selected if the user has no role yet.
324 if ( $user_role )
325         echo '<option value="">' . __('&mdash; No role for this site &mdash;') . '</option>';
326 else
327         echo '<option value="" selected="selected">' . __('&mdash; No role for this site &mdash;') . '</option>';
328 ?>
329 </select></td></tr>
330 <?php endif; //!IS_PROFILE_PAGE
331
332 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?>
333 <tr class="user-super-admin-wrap"><th><?php _e('Super Admin'); ?></th>
334 <td>
335 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?>
336 <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>
337 <?php else : ?>
338 <p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
339 <?php endif; ?>
340 </td></tr>
341 <?php } ?>
342
343 <tr class="user-first-name-wrap">
344         <th><label for="first_name"><?php _e('First Name') ?></label></th>
345         <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td>
346 </tr>
347
348 <tr class="user-last-name-wrap">
349         <th><label for="last_name"><?php _e('Last Name') ?></label></th>
350         <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td>
351 </tr>
352
353 <tr class="user-nickname-wrap">
354         <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
355         <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td>
356 </tr>
357
358 <tr class="user-display-name-wrap">
359         <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th>
360         <td>
361                 <select name="display_name" id="display_name">
362                 <?php
363                         $public_display = array();
364                         $public_display['display_nickname']  = $profileuser->nickname;
365                         $public_display['display_username']  = $profileuser->user_login;
366
367                         if ( !empty($profileuser->first_name) )
368                                 $public_display['display_firstname'] = $profileuser->first_name;
369
370                         if ( !empty($profileuser->last_name) )
371                                 $public_display['display_lastname'] = $profileuser->last_name;
372
373                         if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) {
374                                 $public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
375                                 $public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
376                         }
377
378                         if ( !in_array( $profileuser->display_name, $public_display ) ) // Only add this if it isn't duplicated elsewhere
379                                 $public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
380
381                         $public_display = array_map( 'trim', $public_display );
382                         $public_display = array_unique( $public_display );
383
384                         foreach ( $public_display as $id => $item ) {
385                 ?>
386                         <option <?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
387                 <?php
388                         }
389                 ?>
390                 </select>
391         </td>
392 </tr>
393 </table>
394
395 <h3><?php _e('Contact Info') ?></h3>
396
397 <table class="form-table">
398 <tr class="user-email-wrap">
399         <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
400         <td><input type="email" name="email" id="email" value="<?php echo esc_attr( $profileuser->user_email ) ?>" class="regular-text ltr" />
401         <?php
402         $new_email = get_option( $current_user->ID . '_new_email' );
403         if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID == $current_user->ID ) : ?>
404         <div class="updated inline">
405         <p><?php printf( __('There is a pending change of your e-mail to <code>%1$s</code>. <a href="%2$s">Cancel</a>'), $new_email['newemail'], esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ) ); ?></p>
406         </div>
407         <?php endif; ?>
408         </td>
409 </tr>
410
411 <tr class="user-url-wrap">
412         <th><label for="url"><?php _e('Website') ?></label></th>
413         <td><input type="url" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ) ?>" class="regular-text code" /></td>
414 </tr>
415
416 <?php
417         foreach ( wp_get_user_contact_methods( $profileuser ) as $name => $desc ) {
418 ?>
419 <tr class="user-<?php echo $name; ?>-wrap">
420         <th><label for="<?php echo $name; ?>">
421                 <?php
422                 /**
423                  * Filter a user contactmethod label.
424                  *
425                  * The dynamic portion of the filter hook, `$name`, refers to
426                  * each of the keys in the contactmethods array.
427                  *
428                  * @since 2.9.0
429                  *
430                  * @param string $desc The translatable label for the contactmethod.
431                  */
432                 echo apply_filters( "user_{$name}_label", $desc );
433                 ?>
434         </label></th>
435         <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td>
436 </tr>
437 <?php
438         }
439 ?>
440 </table>
441
442 <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3>
443
444 <table class="form-table">
445 <tr class="user-description-wrap">
446         <th><label for="description"><?php _e('Biographical Info'); ?></label></th>
447         <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea>
448         <p class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></p></td>
449 </tr>
450
451 <?php
452 /** This filter is documented in wp-admin/user-new.php */
453 $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
454 if ( $show_password_fields ) :
455 ?>
456 <tr id="password" class="user-pass1-wrap">
457         <th><label for="pass1"><?php _e( 'New Password' ); ?></label></th>
458         <td>
459                 <input class="hidden" value=" " /><!-- #24364 workaround -->
460                 <input type="password" name="pass1" id="pass1" class="regular-text" size="16" value="" autocomplete="off" />
461                 <p class="description"><?php _e( 'If you would like to change the password type a new one. Otherwise leave this blank.' ); ?></p>
462         </td>
463 </tr>
464 <tr class="user-pass2-wrap">
465         <th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th>
466         <td>
467         <input name="pass2" type="password" id="pass2" class="regular-text" size="16" value="" autocomplete="off" />
468         <p class="description"><?php _e( 'Type your new password again.' ); ?></p>
469         <br />
470         <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div>
471         <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
472         </td>
473 </tr>
474 <?php endif; ?>
475
476 <?php
477 if ( IS_PROFILE_PAGE && count( $sessions->get_all() ) === 1 ) : ?>
478         <tr class="user-sessions-wrap hide-if-no-js">
479                 <th>&nbsp;</th>
480                 <td aria-live="assertive">
481                         <div class="destroy-sessions"><button type="button" disabled class="button button-secondary"><?php _e( 'Log Out of All Other Sessions' ); ?></button></div>
482                         <p class="description">
483                                 <?php _e( 'You are only logged in at this location.' ); ?>
484                         </p>
485                 </td>
486         </tr>
487 <?php elseif ( IS_PROFILE_PAGE && count( $sessions->get_all() ) > 1 ) : ?>
488         <tr class="user-sessions-wrap hide-if-no-js">
489                 <th>&nbsp;</th>
490                 <td aria-live="assertive">
491                         <div class="destroy-sessions"><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out of All Other Sessions' ); ?></button></div>
492                         <p class="description">
493                                 <?php _e( 'Left your account logged in at a public computer? Lost your phone? This will log you out everywhere except your current browser.' ); ?>
494                         </p>
495                 </td>
496         </tr>
497 <?php elseif ( ! IS_PROFILE_PAGE && $sessions->get_all() ) : ?>
498         <tr class="user-sessions-wrap hide-if-no-js">
499                 <th>&nbsp;</th>
500                 <td>
501                         <p><button type="button" class="button button-secondary" id="destroy-sessions"><?php _e( 'Log Out of All Sessions' ); ?></button></p>
502                         <p class="description">
503                                 <?php
504                                 /* translators: 1: User's display name. */
505                                 printf( __( 'Log %s out of all sessions' ), $profileuser->display_name );
506                                 ?>
507                         </p>
508                 </td>
509         </tr>
510 <?php endif; ?>
511
512 </table>
513
514 <?php
515         if ( IS_PROFILE_PAGE ) {
516                 /**
517                  * Fires after the 'About Yourself' settings table on the 'Your Profile' editing screen.
518                  *
519                  * The action only fires if the current user is editing their own profile.
520                  *
521                  * @since 2.0.0
522                  *
523                  * @param WP_User $profileuser The current WP_User object.
524                  */
525                 do_action( 'show_user_profile', $profileuser );
526         } else {
527                 /**
528                  * Fires after the 'About the User' settings table on the 'Edit User' screen.
529                  *
530                  * @since 2.0.0
531                  *
532                  * @param WP_User $profileuser The current WP_User object.
533                  */
534                 do_action( 'edit_user_profile', $profileuser );
535         }
536 ?>
537
538 <?php
539 /**
540  * Filter whether to display additional capabilities for the user.
541  *
542  * The 'Additional Capabilities' section will only be enabled if
543  * the number of the user's capabilities exceeds their number of
544  * of roles.
545  *
546  * @since 2.8.0
547  *
548  * @param bool    $enable      Whether to display the capabilities. Default true.
549  * @param WP_User $profileuser The current WP_User object.
550  */
551 if ( count( $profileuser->caps ) > count( $profileuser->roles )
552         && apply_filters( 'additional_capabilities_display', true, $profileuser )
553 ) : ?>
554 <h3><?php _e( 'Additional Capabilities' ); ?></h3>
555 <table class="form-table">
556 <tr class="user-capabilities-wrap">
557         <th scope="row"><?php _e( 'Capabilities' ); ?></th>
558         <td>
559 <?php
560         $output = '';
561         foreach ( $profileuser->caps as $cap => $value ) {
562                 if ( ! $wp_roles->is_role( $cap ) ) {
563                         if ( '' != $output )
564                                 $output .= ', ';
565                         $output .= $value ? $cap : sprintf( __( 'Denied: %s' ), $cap );
566                 }
567         }
568         echo $output;
569 ?>
570         </td>
571 </tr>
572 </table>
573 <?php endif; ?>
574
575 <input type="hidden" name="action" value="update" />
576 <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr($user_id); ?>" />
577
578 <?php submit_button( IS_PROFILE_PAGE ? __('Update Profile') : __('Update User') ); ?>
579
580 </form>
581 </div>
582 <?php
583 break;
584 }
585 ?>
586 <script type="text/javascript">
587         if (window.location.hash == '#password') {
588                 document.getElementById('pass1').focus();
589         }
590 </script>
591 <?php
592 include( ABSPATH . 'wp-admin/admin-footer.php');