]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/user-edit.php
WordPress 3.5-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('./admin.php');
11
12 wp_reset_vars(array('action', 'redirect', 'profile', '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>' . __('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
45 get_current_screen()->add_help_tab( array(
46         'id'      => 'overview',
47         'title'   => __('Overview'),
48         'content' => $profile_help,
49 ) );
50
51 get_current_screen()->set_help_sidebar(
52     '<p><strong>' . __('For more information:') . '</strong></p>' .
53     '<p>' . __('<a href="http://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .
54     '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
55 );
56
57 $wp_http_referer = remove_query_arg(array('update', 'delete_count'), stripslashes($wp_http_referer));
58
59 $user_can_edit = current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' );
60
61 /**
62  * Optional SSL preference that can be turned on by hooking to the 'personal_options' action.
63  *
64  * @since 2.7.0
65  *
66  * @param object $user User data object
67  */
68 function use_ssl_preference($user) {
69 ?>
70         <tr>
71                 <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         </tr>
74 <?php
75 }
76
77 // Only allow super admins on multisite to edit every user.
78 if ( is_multisite() && ! current_user_can( 'manage_network_users' ) && $user_id != $current_user->ID && ! apply_filters( 'enable_edit_any_user_configuration', true ) )
79         wp_die( __( 'You do not have permission to edit this user.' ) );
80
81 // Execute confirmed email change. See send_confirmation_on_profile_email().
82 if ( is_multisite() && IS_PROFILE_PAGE && isset( $_GET[ 'newuseremail' ] ) && $current_user->ID ) {
83         $new_email = get_option( $current_user->ID . '_new_email' );
84         if ( $new_email[ 'hash' ] == $_GET[ 'newuseremail' ] ) {
85                 $user = new stdClass;
86                 $user->ID = $current_user->ID;
87                 $user->user_email = esc_html( trim( $new_email[ 'newemail' ] ) );
88                 if ( $wpdb->get_var( $wpdb->prepare( "SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", $current_user->user_login ) ) )
89                         $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $user->user_email, $current_user->user_login ) );
90                 wp_update_user( $user );
91                 delete_option( $current_user->ID . '_new_email' );
92                 wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
93                 die();
94         }
95 } elseif ( is_multisite() && IS_PROFILE_PAGE && !empty( $_GET['dismiss'] ) && $current_user->ID . '_new_email' == $_GET['dismiss'] ) {
96         delete_option( $current_user->ID . '_new_email' );
97         wp_redirect( add_query_arg( array('updated' => 'true'), self_admin_url( 'profile.php' ) ) );
98         die();
99 }
100
101 switch ($action) {
102 case 'update':
103
104 check_admin_referer('update-user_' . $user_id);
105
106 if ( !current_user_can('edit_user', $user_id) )
107         wp_die(__('You do not have permission to edit this user.'));
108
109 if ( IS_PROFILE_PAGE )
110         do_action('personal_options_update', $user_id);
111 else
112         do_action('edit_user_profile_update', $user_id);
113
114 if ( !is_multisite() ) {
115         $errors = edit_user($user_id);
116 } else {
117         $user = get_userdata( $user_id );
118
119         // Update the email address in signups, if present.
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 ) );
122
123         // WPMU must delete the user from the current blog if WP added him after editing.
124         $delete_role = false;
125         $blog_prefix = $wpdb->get_blog_prefix();
126         if ( $user_id != $current_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:{}'" );
128                 if ( !is_network_admin() && null == $cap && $_POST[ 'role' ] == '' ) {
129                         $_POST[ 'role' ] = 'contributor';
130                         $delete_role = true;
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 }
141
142 if ( !is_wp_error( $errors ) ) {
143         $redirect = add_query_arg( 'updated', true, get_edit_user_link( $user_id ) );
144         if ( $wp_http_referer )
145                 $redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
146         wp_redirect($redirect);
147         exit;
148 }
149
150 default:
151 $profileuser = get_user_to_edit($user_id);
152
153 if ( !current_user_can('edit_user', $user_id) )
154         wp_die(__('You do not have permission to edit this user.'));
155
156 include (ABSPATH . 'wp-admin/admin-header.php');
157 ?>
158
159 <?php if ( !IS_PROFILE_PAGE && is_super_admin( $profileuser->ID ) && current_user_can( 'manage_network_options' ) ) { ?>
160         <div class="updated"><p><strong><?php _e('Important:'); ?></strong> <?php _e('This user has super admin privileges.'); ?></p></div>
161 <?php } ?>
162 <?php if ( isset($_GET['updated']) ) : ?>
163 <div id="message" class="updated">
164         <?php if ( IS_PROFILE_PAGE ) : ?>
165         <p><strong><?php _e('Profile updated.') ?></strong></p>
166         <?php else: ?>
167         <p><strong><?php _e('User updated.') ?></strong></p>
168         <?php endif; ?>
169         <?php if ( $wp_http_referer && !IS_PROFILE_PAGE ) : ?>
170         <p><a href="<?php echo esc_url( $wp_http_referer ); ?>"><?php _e('&larr; Back to Users'); ?></a></p>
171         <?php endif; ?>
172 </div>
173 <?php endif; ?>
174 <?php if ( isset( $errors ) && is_wp_error( $errors ) ) : ?>
175 <div class="error"><p><?php echo implode( "</p>\n<p>", $errors->get_error_messages() ); ?></p></div>
176 <?php endif; ?>
177
178 <div class="wrap" id="profile-page">
179 <?php screen_icon(); ?>
180 <h2>
181 <?php
182 echo esc_html( $title );
183 if ( ! IS_PROFILE_PAGE ) {
184         if ( current_user_can( 'create_users' ) ) { ?>
185                 <a href="user-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
186         <?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>
188         <?php }
189 } ?>
190 </h2>
191
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'); ?>>
193 <?php wp_nonce_field('update-user_' . $user_id) ?>
194 <?php if ( $wp_http_referer ) : ?>
195         <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" />
196 <?php endif; ?>
197 <p>
198 <input type="hidden" name="from" value="profile" />
199 <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
200 </p>
201
202 <h3><?php _e('Personal Options'); ?></h3>
203
204 <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 ?>
206         <tr>
207                 <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 checked('false', $profileuser->rich_editing); ?> /> <?php _e('Disable the visual editor when writing'); ?></label></td>
209         </tr>
210 <?php endif; ?>
211 <?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?>
212 <tr>
213 <th scope="row"><?php _e('Admin Color Scheme')?></th>
214 <td><?php do_action( 'admin_color_scheme_picker' ); ?></td>
215 </tr>
216 <?php
217 endif; // $_wp_admin_css_colors
218 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
219 <tr>
220 <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>
222 </tr>
223 <?php endif; ?>
224 <tr class="show-admin-bar">
225 <th scope="row"><?php _e('Toolbar')?></th>
226 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend>
227 <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 ) ); ?> />
229 <?php _e( 'Show Toolbar when viewing site' ); ?></label><br />
230 </fieldset>
231 </td>
232 </tr>
233 <?php do_action('personal_options', $profileuser); ?>
234 </table>
235 <?php
236         if ( IS_PROFILE_PAGE )
237                 do_action('profile_personal_options', $profileuser);
238 ?>
239
240 <h3><?php _e('Name') ?></h3>
241
242 <table class="form-table">
243         <tr>
244                 <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>
246         </tr>
247
248 <?php if ( !IS_PROFILE_PAGE && !is_network_admin() ) : ?>
249 <tr><th><label for="role"><?php _e('Role') ?></label></th>
250 <td><select name="role" id="role">
251 <?php
252 // Compare user role against currently editable roles
253 // TODO: create a function that does this: wp_get_user_role()
254 $user_roles = array_intersect( array_values( $profileuser->roles ), array_keys( get_editable_roles() ) );
255 $user_role  = array_shift( $user_roles );
256
257 // print the full list of roles with the primary one selected.
258 wp_dropdown_roles($user_role);
259
260 // print the 'no role' option. Make it selected if the user has no role yet.
261 if ( $user_role )
262         echo '<option value="">' . __('&mdash; No role for this site &mdash;') . '</option>';
263 else
264         echo '<option value="" selected="selected">' . __('&mdash; No role for this site &mdash;') . '</option>';
265 ?>
266 </select></td></tr>
267 <?php endif; //!IS_PROFILE_PAGE
268
269 if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_can( 'manage_network_options' ) && !isset($super_admins) ) { ?>
270 <tr><th><?php _e('Super Admin'); ?></th>
271 <td>
272 <?php if ( $profileuser->user_email != get_site_option( 'admin_email' ) || ! is_super_admin( $profileuser->ID ) ) : ?>
273 <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>
274 <?php else : ?>
275 <p><?php _e( 'Super admin privileges cannot be removed because this user has the network admin email.' ); ?></p>
276 <?php endif; ?>
277 </td></tr>
278 <?php } ?>
279
280 <tr>
281         <th><label for="first_name"><?php _e('First Name') ?></label></th>
282         <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td>
283 </tr>
284
285 <tr>
286         <th><label for="last_name"><?php _e('Last Name') ?></label></th>
287         <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td>
288 </tr>
289
290 <tr>
291         <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
292         <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td>
293 </tr>
294
295 <tr>
296         <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th>
297         <td>
298                 <select name="display_name" id="display_name">
299                 <?php
300                         $public_display = array();
301                         $public_display['display_nickname']  = $profileuser->nickname;
302                         $public_display['display_username']  = $profileuser->user_login;
303
304                         if ( !empty($profileuser->first_name) )
305                                 $public_display['display_firstname'] = $profileuser->first_name;
306
307                         if ( !empty($profileuser->last_name) )
308                                 $public_display['display_lastname'] = $profileuser->last_name;
309
310                         if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) {
311                                 $public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
312                                 $public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
313                         }
314
315                         if ( !in_array( $profileuser->display_name, $public_display ) ) // Only add this if it isn't duplicated elsewhere
316                                 $public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
317
318                         $public_display = array_map( 'trim', $public_display );
319                         $public_display = array_unique( $public_display );
320
321                         foreach ( $public_display as $id => $item ) {
322                 ?>
323                         <option <?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
324                 <?php
325                         }
326                 ?>
327                 </select>
328         </td>
329 </tr>
330 </table>
331
332 <h3><?php _e('Contact Info') ?></h3>
333
334 <table class="form-table">
335 <tr>
336         <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
337         <td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" />
338         <?php
339         $new_email = get_option( $current_user->ID . '_new_email' );
340         if ( $new_email && $new_email != $current_user->user_email ) : ?>
341         <div class="updated inline">
342         <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>
343         </div>
344         <?php endif; ?>
345         </td>
346 </tr>
347
348 <tr>
349         <th><label for="url"><?php _e('Website') ?></label></th>
350         <td><input type="text" name="url" id="url" value="<?php echo esc_attr($profileuser->user_url) ?>" class="regular-text code" /></td>
351 </tr>
352
353 <?php
354         foreach (_wp_get_user_contactmethods( $profileuser ) as $name => $desc) {
355 ?>
356 <tr>
357         <th><label for="<?php echo $name; ?>"><?php echo apply_filters('user_'.$name.'_label', $desc); ?></label></th>
358         <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td>
359 </tr>
360 <?php
361         }
362 ?>
363 </table>
364
365 <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3>
366
367 <table class="form-table">
368 <tr>
369         <th><label for="description"><?php _e('Biographical Info'); ?></label></th>
370         <td><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description; // textarea_escaped ?></textarea><br />
371         <span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td>
372 </tr>
373
374 <?php
375 $show_password_fields = apply_filters('show_password_fields', true, $profileuser);
376 if ( $show_password_fields ) :
377 ?>
378 <tr id="password">
379         <th><label for="pass1"><?php _e('New Password'); ?></label></th>
380         <td><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><br />
381                 <input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("Type your new password again."); ?></span><br />
382                 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
383                 <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
384         </td>
385 </tr>
386 <?php endif; ?>
387 </table>
388
389 <?php
390         if ( IS_PROFILE_PAGE )
391                 do_action( 'show_user_profile', $profileuser );
392         else
393                 do_action( 'edit_user_profile', $profileuser );
394 ?>
395
396 <?php if ( count($profileuser->caps) > count($profileuser->roles) && apply_filters('additional_capabilities_display', true, $profileuser) ) { ?>
397 <br class="clear" />
398         <table width="99%" style="border: none;" cellspacing="2" cellpadding="3" class="editform">
399                 <tr>
400                         <th scope="row"><?php _e('Additional Capabilities') ?></th>
401                         <td><?php
402                         $output = '';
403                         foreach ( $profileuser->caps as $cap => $value ) {
404                                 if ( !$wp_roles->is_role($cap) ) {
405                                         if ( $output != '' )
406                                                 $output .= ', ';
407                                         $output .= $value ? $cap : "Denied: {$cap}";
408                                 }
409                         }
410                         echo $output;
411                         ?></td>
412                 </tr>
413         </table>
414 <?php } ?>
415
416 <input type="hidden" name="action" value="update" />
417 <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr($user_id); ?>" />
418
419 <?php submit_button( IS_PROFILE_PAGE ? __('Update Profile') : __('Update User') ); ?>
420
421 </form>
422 </div>
423 <?php
424 break;
425 }
426 ?>
427 <script type="text/javascript">
428         if (window.location.hash == '#password') {
429                 document.getElementById('pass1').focus();
430         }
431 </script>
432 <?php
433 include( ABSPATH . 'wp-admin/admin-footer.php');