37 $parent_file = 'profile.php'; |
37 $parent_file = 'profile.php'; |
38 |
38 |
39 $profile_help = '<p>' . __('Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.') . '</p>' . |
39 $profile_help = '<p>' . __('Your profile contains information about you (your “account”) 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>' . |
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>' . |
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>' . |
42 '<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>' . |
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>' . |
43 '<p>' . __('Remember to click the Update Profile button when you are finished.') . '</p>'; |
44 '<p>' . __('Remember to click the Update Profile button when you are finished.') . '</p>'; |
44 |
45 |
45 get_current_screen()->add_help_tab( array( |
46 get_current_screen()->add_help_tab( array( |
46 'id' => 'overview', |
47 'id' => 'overview', |
65 * |
66 * |
66 * @param object $user User data object |
67 * @param object $user User data object |
67 */ |
68 */ |
68 function use_ssl_preference($user) { |
69 function use_ssl_preference($user) { |
69 ?> |
70 ?> |
70 <tr> |
71 <tr class="user-use-ssl-wrap"> |
71 <th scope="row"><?php _e('Use https')?></th> |
72 <th scope="row"><?php _e('Use https')?></th> |
72 <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> |
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> |
73 </tr> |
74 </tr> |
74 <?php |
75 <?php |
75 } |
76 } |
76 |
77 |
77 // Only allow super admins on multisite to edit every user. |
78 /** |
78 if ( is_multisite() && ! current_user_can( 'manage_network_users' ) && $user_id != $current_user->ID && ! apply_filters( 'enable_edit_any_user_configuration', true ) ) |
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 ) { |
79 wp_die( __( 'You do not have permission to edit this user.' ) ); |
96 wp_die( __( 'You do not have permission to edit this user.' ) ); |
|
97 } |
80 |
98 |
81 // Execute confirmed email change. See send_confirmation_on_profile_email(). |
99 // Execute confirmed email change. See send_confirmation_on_profile_email(). |
82 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) { |
100 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) { |
83 $new_email = get_option( $current_user->ID . '_new_email' ); |
101 $new_email = get_option( $current_user->ID . '_new_email' ); |
84 if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) { |
102 if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) { |
104 check_admin_referer('update-user_' . $user_id); |
122 check_admin_referer('update-user_' . $user_id); |
105 |
123 |
106 if ( !current_user_can('edit_user', $user_id) ) |
124 if ( !current_user_can('edit_user', $user_id) ) |
107 wp_die(__('You do not have permission to edit this user.')); |
125 wp_die(__('You do not have permission to edit this user.')); |
108 |
126 |
109 if ( IS_PROFILE_PAGE ) |
127 if ( IS_PROFILE_PAGE ) { |
110 do_action('personal_options_update', $user_id); |
128 /** |
111 else |
129 * Fires before the page loads on the 'Your Profile' editing screen. |
112 do_action('edit_user_profile_update', $user_id); |
130 * |
113 |
131 * The action only fires if the current user is editing their own profile. |
114 if ( !is_multisite() ) { |
132 * |
115 $errors = edit_user($user_id); |
133 * @since 2.0.0 |
|
134 * |
|
135 * @param int $user_id The user ID. |
|
136 */ |
|
137 do_action( 'personal_options_update', $user_id ); |
116 } else { |
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() ) { |
117 $user = get_userdata( $user_id ); |
151 $user = get_userdata( $user_id ); |
118 |
152 |
119 // Update the email address in signups, if present. |
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 ) ) ) { |
120 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 ) ) ) |
|
121 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) ); |
154 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST[ 'email' ], $user_login ) ); |
122 |
155 } |
123 // WPMU must delete the user from the current blog if WP added him after editing. |
156 } |
124 $delete_role = false; |
157 |
125 $blog_prefix = $wpdb->get_blog_prefix(); |
158 // Update the user. |
126 if ( $user_id != $current_user->ID ) { |
159 $errors = edit_user( $user_id ); |
127 $cap = $wpdb->get_var( "SELECT meta_value FROM {$wpdb->usermeta} WHERE user_id = '{$user_id}' AND meta_key = '{$blog_prefix}capabilities' AND meta_value = 'a:0:{}'" ); |
160 |
128 if ( !is_network_admin() && null == $cap && $_POST[ 'role' ] == '' ) { |
161 // Grant or revoke super admin status if requested. |
129 $_POST[ 'role' ] = 'contributor'; |
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 ) ) { |
130 $delete_role = true; |
163 empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id ); |
131 } |
|
132 } |
|
133 if ( !isset( $errors ) || ( isset( $errors ) && is_object( $errors ) && false == $errors->get_error_codes() ) ) |
|
134 $errors = edit_user($user_id); |
|
135 if ( $delete_role ) // stops users being added to current blog when they are edited |
|
136 delete_user_meta( $user_id, $blog_prefix . 'capabilities' ); |
|
137 |
|
138 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 ) ) |
|
139 empty( $_POST['super_admin'] ) ? revoke_super_admin( $user_id ) : grant_super_admin( $user_id ); |
|
140 } |
164 } |
141 |
165 |
142 if ( !is_wp_error( $errors ) ) { |
166 if ( !is_wp_error( $errors ) ) { |
143 $redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) ); |
167 $redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) ); |
144 if ( $wp_http_referer ) |
168 if ( $wp_http_referer ) |
186 <?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?> |
211 <?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?> |
187 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a> |
212 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a> |
188 <?php } |
213 <?php } |
189 } ?> |
214 } ?> |
190 </h2> |
215 </h2> |
191 |
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 |
192 <form id="your-profile" action="<?php echo esc_url( self_admin_url( IS_PROFILE_PAGE ? 'profile.php' : 'user-edit.php' ) ); ?>" method="post"<?php do_action('user_edit_form_tag'); ?>> |
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 ?>> |
193 <?php wp_nonce_field('update-user_' . $user_id) ?> |
224 <?php wp_nonce_field('update-user_' . $user_id) ?> |
194 <?php if ( $wp_http_referer ) : ?> |
225 <?php if ( $wp_http_referer ) : ?> |
195 <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" /> |
226 <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" /> |
196 <?php endif; ?> |
227 <?php endif; ?> |
197 <p> |
228 <p> |
198 <input type="hidden" name="from" value="profile" /> |
229 <input type="hidden" name="from" value="profile" /> |
199 <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" /> |
230 <input type="hidden" name="checkuser_id" value="<?php echo get_current_user_id(); ?>" /> |
200 </p> |
231 </p> |
201 |
232 |
202 <h3><?php _e('Personal Options'); ?></h3> |
233 <h3><?php _e('Personal Options'); ?></h3> |
203 |
234 |
204 <table class="form-table"> |
235 <table class="form-table"> |
205 <?php if ( rich_edit_exists() && !( IS_PROFILE_PAGE && !$user_can_edit ) ) : // don't bother showing the option if the editor has been removed ?> |
236 <?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) ) : ?> |
206 <tr> |
237 <tr class="user-rich-editing-wrap"> |
207 <th scope="row"><?php _e('Visual Editor')?></th> |
238 <th scope="row"><?php _e( 'Visual Editor' ); ?></th> |
208 <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> |
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> |
209 </tr> |
240 </tr> |
210 <?php endif; ?> |
241 <?php endif; ?> |
211 <?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?> |
242 <?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?> |
212 <tr> |
243 <tr class="user-admin-color-wrap"> |
213 <th scope="row"><?php _e('Admin Color Scheme')?></th> |
244 <th scope="row"><?php _e('Admin Color Scheme')?></th> |
214 <td><?php do_action( 'admin_color_scheme_picker' ); ?></td> |
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> |
215 </tr> |
259 </tr> |
216 <?php |
260 <?php |
217 endif; // $_wp_admin_css_colors |
261 endif; // $_wp_admin_css_colors |
218 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> |
262 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> |
219 <tr> |
263 <tr class="user-comment-shortcuts-wrap"> |
220 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th> |
264 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th> |
221 <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="http://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td> |
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> |
222 </tr> |
266 </tr> |
223 <?php endif; ?> |
267 <?php endif; ?> |
224 <tr class="show-admin-bar"> |
268 <tr class="show-admin-bar user-admin-bar-front-wrap"> |
225 <th scope="row"><?php _e('Toolbar')?></th> |
269 <th scope="row"><?php _e( 'Toolbar' ); ?></th> |
226 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend> |
270 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend> |
227 <label for="admin_bar_front"> |
271 <label for="admin_bar_front"> |
228 <input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> /> |
272 <input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> /> |
229 <?php _e( 'Show Toolbar when viewing site' ); ?></label><br /> |
273 <?php _e( 'Show Toolbar when viewing site' ); ?></label><br /> |
230 </fieldset> |
274 </fieldset> |
231 </td> |
275 </td> |
232 </tr> |
276 </tr> |
233 <?php do_action('personal_options', $profileuser); ?> |
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 |
234 </table> |
288 </table> |
235 <?php |
289 <?php |
236 if ( IS_PROFILE_PAGE ) |
290 if ( IS_PROFILE_PAGE ) { |
237 do_action('profile_personal_options', $profileuser); |
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 } |
238 ?> |
302 ?> |
239 |
303 |
240 <h3><?php _e('Name') ?></h3> |
304 <h3><?php _e('Name') ?></h3> |
241 |
305 |
242 <table class="form-table"> |
306 <table class="form-table"> |
243 <tr> |
307 <tr class="user-user-login-wrap"> |
244 <th><label for="user_login"><?php _e('Username'); ?></label></th> |
308 <th><label for="user_login"><?php _e('Username'); ?></label></th> |
245 <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> |
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> |
246 </tr> |
310 </tr> |
247 |
311 |
248 <?php if ( !IS_PROFILE_PAGE && !is_network_admin() ) : ?> |
312 <?php if ( !IS_PROFILE_PAGE && !is_network_admin() ) : ?> |
249 <tr><th><label for="role"><?php _e('Role') ?></label></th> |
313 <tr class="user-role-wrap"><th><label for="role"><?php _e('Role') ?></label></th> |
250 <td><select name="role" id="role"> |
314 <td><select name="role" id="role"> |
251 <?php |
315 <?php |
252 // Compare user role against currently editable roles |
316 // Compare user role against currently editable roles |
253 $user_roles = array_intersect( array_values( $profileuser->roles ), array_keys( get_editable_roles() ) ); |
317 $user_roles = array_intersect( array_values( $profileuser->roles ), array_keys( get_editable_roles() ) ); |
254 $user_role = array_shift( $user_roles ); |
318 $user_role = reset( $user_roles ); |
255 |
319 |
256 // print the full list of roles with the primary one selected. |
320 // print the full list of roles with the primary one selected. |
257 wp_dropdown_roles($user_role); |
321 wp_dropdown_roles($user_role); |
258 |
322 |
259 // print the 'no role' option. Make it selected if the user has no role yet. |
323 // print the 'no role' option. Make it selected if the user has no role yet. |
264 ?> |
328 ?> |
265 </select></td></tr> |
329 </select></td></tr> |
266 <?php endif; //!IS_PROFILE_PAGE |
330 <?php endif; //!IS_PROFILE_PAGE |
267 |
331 |
268 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?> |
332 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?> |
269 <tr><th><?php _e('Super Admin'); ?></th> |
333 <tr class="user-super-admin-wrap"><th><?php _e('Super Admin'); ?></th> |
270 <td> |
334 <td> |
271 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?> |
335 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?> |
272 <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> |
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> |
273 <?php else : ?> |
337 <?php else : ?> |
274 <p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p> |
338 <p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p> |
275 <?php endif; ?> |
339 <?php endif; ?> |
276 </td></tr> |
340 </td></tr> |
277 <?php } ?> |
341 <?php } ?> |
278 |
342 |
279 <tr> |
343 <tr class="user-first-name-wrap"> |
280 <th><label for="first_name"><?php _e('First Name') ?></label></th> |
344 <th><label for="first_name"><?php _e('First Name') ?></label></th> |
281 <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td> |
345 <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td> |
282 </tr> |
346 </tr> |
283 |
347 |
284 <tr> |
348 <tr class="user-last-name-wrap"> |
285 <th><label for="last_name"><?php _e('Last Name') ?></label></th> |
349 <th><label for="last_name"><?php _e('Last Name') ?></label></th> |
286 <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td> |
350 <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td> |
287 </tr> |
351 </tr> |
288 |
352 |
289 <tr> |
353 <tr class="user-nickname-wrap"> |
290 <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> |
354 <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> |
291 <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td> |
355 <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td> |
292 </tr> |
356 </tr> |
293 |
357 |
294 <tr> |
358 <tr class="user-display-name-wrap"> |
295 <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th> |
359 <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th> |
296 <td> |
360 <td> |
297 <select name="display_name" id="display_name"> |
361 <select name="display_name" id="display_name"> |
298 <?php |
362 <?php |
299 $public_display = array(); |
363 $public_display = array(); |
329 </table> |
393 </table> |
330 |
394 |
331 <h3><?php _e('Contact Info') ?></h3> |
395 <h3><?php _e('Contact Info') ?></h3> |
332 |
396 |
333 <table class="form-table"> |
397 <table class="form-table"> |
334 <tr> |
398 <tr class="user-email-wrap"> |
335 <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> |
399 <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th> |
336 <td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" /> |
400 <td><input type="email" name="email" id="email" value="<?php echo esc_attr( $profileuser->user_email ) ?>" class="regular-text ltr" /> |
337 <?php |
401 <?php |
338 $new_email = get_option( $current_user->ID . '_new_email' ); |
402 $new_email = get_option( $current_user->ID . '_new_email' ); |
339 if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID == $current_user->ID ) : ?> |
403 if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID == $current_user->ID ) : ?> |
340 <div class="updated inline"> |
404 <div class="updated inline"> |
341 <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> |
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> |
342 </div> |
406 </div> |
343 <?php endif; ?> |
407 <?php endif; ?> |
344 </td> |
408 </td> |
345 </tr> |
409 </tr> |
346 |
410 |
347 <tr> |
411 <tr class="user-url-wrap"> |
348 <th><label for="url"><?php _e('Website') ?></label></th> |
412 <th><label for="url"><?php _e('Website') ?></label></th> |
349 <td><input type="text" name="url" id="url" value="<?php echo esc_attr($profileuser->user_url) ?>" class="regular-text code" /></td> |
413 <td><input type="url" name="url" id="url" value="<?php echo esc_attr( $profileuser->user_url ) ?>" class="regular-text code" /></td> |
350 </tr> |
414 </tr> |
351 |
415 |
352 <?php |
416 <?php |
353 foreach ( wp_get_user_contact_methods( $profileuser ) as $name => $desc ) { |
417 foreach ( wp_get_user_contact_methods( $profileuser ) as $name => $desc ) { |
354 ?> |
418 ?> |
355 <tr> |
419 <tr class="user-<?php echo $name; ?>-wrap"> |
356 <th><label for="<?php echo $name; ?>"><?php echo apply_filters('user_'.$name.'_label', $desc); ?></label></th> |
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> |
357 <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td> |
435 <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td> |
358 </tr> |
436 </tr> |
359 <?php |
437 <?php |
360 } |
438 } |
361 ?> |
439 ?> |
362 </table> |
440 </table> |
363 |
441 |
364 <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3> |
442 <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3> |
365 |
443 |
366 <table class="form-table"> |
444 <table class="form-table"> |
367 <tr> |
445 <tr class="user-description-wrap"> |
368 <th><label for="description"><?php _e('Biographical Info'); ?></label></th> |
446 <th><label for="description"><?php _e('Biographical Info'); ?></label></th> |
369 <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea><br /> |
447 <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea> |
370 <span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td> |
448 <p class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></p></td> |
371 </tr> |
449 </tr> |
372 |
450 |
373 <?php |
451 <?php |
374 $show_password_fields = apply_filters('show_password_fields', true, $profileuser); |
452 /** This filter is documented in wp-admin/user-new.php */ |
|
453 $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ); |
375 if ( $show_password_fields ) : |
454 if ( $show_password_fields ) : |
376 ?> |
455 ?> |
377 <tr id="password"> |
456 <tr id="password" class="user-pass1-wrap"> |
378 <th><label for="pass1"><?php _e('New Password'); ?></label></th> |
457 <th><label for="pass1"><?php _e( 'New Password' ); ?></label></th> |
379 <td> |
458 <td> |
380 <input class="hidden" value=" " /><!-- #24364 workaround --> |
459 <input class="hidden" value=" " /><!-- #24364 workaround --> |
381 <input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?></span> |
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> |
382 </td> |
462 </td> |
383 </tr> |
463 </tr> |
384 <tr> |
464 <tr class="user-pass2-wrap"> |
385 <th scope="row"><label for="pass2"><?php _e('Repeat New Password'); ?></label></th> |
465 <th scope="row"><label for="pass2"><?php _e( 'Repeat New Password' ); ?></label></th> |
386 <td> |
466 <td> |
387 <input name="pass2" type="password" id="pass2" size="16" value="" autocomplete="off" /> <span class="description" for="pass2"><?php _e("Type your new password again."); ?></span> |
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> |
388 <br /> |
469 <br /> |
389 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> |
470 <div id="pass-strength-result"><?php _e( 'Strength indicator' ); ?></div> |
390 <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 ! " ? $ % ^ & ).'); ?></p> |
471 <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p> |
391 </td> |
472 </td> |
392 </tr> |
473 </tr> |
393 <?php endif; ?> |
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> </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> </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> </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 |
394 </table> |
512 </table> |
395 |
513 |
396 <?php |
514 <?php |
397 if ( IS_PROFILE_PAGE ) |
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 */ |
398 do_action( 'show_user_profile', $profileuser ); |
525 do_action( 'show_user_profile', $profileuser ); |
399 else |
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 */ |
400 do_action( 'edit_user_profile', $profileuser ); |
534 do_action( 'edit_user_profile', $profileuser ); |
401 ?> |
535 } |
402 |
536 ?> |
403 <?php if ( count( $profileuser->caps ) > count( $profileuser->roles ) && apply_filters( 'additional_capabilities_display', true, $profileuser ) ) : ?> |
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 ) : ?> |
404 <h3><?php _e( 'Additional Capabilities' ); ?></h3> |
554 <h3><?php _e( 'Additional Capabilities' ); ?></h3> |
405 <table class="form-table"> |
555 <table class="form-table"> |
406 <tr> |
556 <tr class="user-capabilities-wrap"> |
407 <th scope="row"><?php _e( 'Capabilities' ); ?></th> |
557 <th scope="row"><?php _e( 'Capabilities' ); ?></th> |
408 <td> |
558 <td> |
409 <?php |
559 <?php |
410 $output = ''; |
560 $output = ''; |
411 foreach ( $profileuser->caps as $cap => $value ) { |
561 foreach ( $profileuser->caps as $cap => $value ) { |