PageRenderTime 39ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/user-edit.php

https://github.com/jao/jpcamargo
PHP | 346 lines | 278 code | 49 blank | 19 comment | 43 complexity | 45e010148cec0ff7bf2b045672dccb2f MD5 | raw file
  1. <?php
  2. /**
  3. * Edit user administration panel.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. /** WordPress Administration Bootstrap */
  9. require_once('admin.php');
  10. if ( !defined('IS_PROFILE_PAGE') )
  11. define('IS_PROFILE_PAGE', false);
  12. wp_enqueue_script('user-profile');
  13. wp_enqueue_script('password-strength-meter');
  14. $title = IS_PROFILE_PAGE ? __('Profile') : __('Edit User');
  15. if ( current_user_can('edit_users') && !IS_PROFILE_PAGE )
  16. $submenu_file = 'users.php';
  17. else
  18. $submenu_file = 'profile.php';
  19. $parent_file = 'users.php';
  20. wp_reset_vars(array('action', 'redirect', 'profile', 'user_id', 'wp_http_referer'));
  21. $wp_http_referer = remove_query_arg(array('update', 'delete_count'), stripslashes($wp_http_referer));
  22. $user_id = (int) $user_id;
  23. if ( !$user_id ) {
  24. if ( IS_PROFILE_PAGE ) {
  25. $current_user = wp_get_current_user();
  26. $user_id = $current_user->ID;
  27. } else {
  28. wp_die(__('Invalid user ID.'));
  29. }
  30. } elseif ( !get_userdata($user_id) ) {
  31. wp_die( __('Invalid user ID.') );
  32. }
  33. $all_post_caps = array('posts', 'pages');
  34. $user_can_edit = false;
  35. foreach ( $all_post_caps as $post_cap )
  36. $user_can_edit |= current_user_can("edit_$post_cap");
  37. /**
  38. * Optional SSL preference that can be turned on by hooking to the 'personal_options' action.
  39. *
  40. * @since 2.7.0
  41. *
  42. * @param object $user User data object
  43. */
  44. function use_ssl_preference($user) {
  45. ?>
  46. <tr>
  47. <th scope="row"><?php _e('Use https')?></th>
  48. <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>
  49. </tr>
  50. <?php
  51. }
  52. switch ($action) {
  53. case 'switchposts':
  54. check_admin_referer();
  55. /* TODO: Switch all posts from one user to another user */
  56. break;
  57. case 'update':
  58. check_admin_referer('update-user_' . $user_id);
  59. if ( !current_user_can('edit_user', $user_id) )
  60. wp_die(__('You do not have permission to edit this user.'));
  61. if ( IS_PROFILE_PAGE )
  62. do_action('personal_options_update', $user_id);
  63. else
  64. do_action('edit_user_profile_update', $user_id);
  65. $errors = edit_user($user_id);
  66. if ( !is_wp_error( $errors ) ) {
  67. $redirect = (IS_PROFILE_PAGE ? "profile.php?" : "user-edit.php?user_id=$user_id&"). "updated=true";
  68. $redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
  69. wp_redirect($redirect);
  70. exit;
  71. }
  72. default:
  73. $profileuser = get_user_to_edit($user_id);
  74. if ( !current_user_can('edit_user', $user_id) )
  75. wp_die(__('You do not have permission to edit this user.'));
  76. include ('admin-header.php');
  77. ?>
  78. <?php if ( isset($_GET['updated']) ) : ?>
  79. <div id="message" class="updated fade">
  80. <p><strong><?php _e('User updated.') ?></strong></p>
  81. <?php if ( $wp_http_referer && !IS_PROFILE_PAGE ) : ?>
  82. <p><a href="users.php"><?php _e('&larr; Back to Authors and Users'); ?></a></p>
  83. <?php endif; ?>
  84. </div>
  85. <?php endif; ?>
  86. <?php if ( isset( $errors ) && is_wp_error( $errors ) ) : ?>
  87. <div class="error">
  88. <ul>
  89. <?php
  90. foreach( $errors->get_error_messages() as $message )
  91. echo "<li>$message</li>";
  92. ?>
  93. </ul>
  94. </div>
  95. <?php endif; ?>
  96. <div class="wrap" id="profile-page">
  97. <?php screen_icon(); ?>
  98. <h2><?php echo esc_html( $title ); ?></h2>
  99. <form id="your-profile" action="<?php if ( IS_PROFILE_PAGE ) { echo admin_url('profile.php'); } else { echo admin_url('user-edit.php'); } ?>" method="post">
  100. <?php wp_nonce_field('update-user_' . $user_id) ?>
  101. <?php if ( $wp_http_referer ) : ?>
  102. <input type="hidden" name="wp_http_referer" value="<?php echo esc_url($wp_http_referer); ?>" />
  103. <?php endif; ?>
  104. <p>
  105. <input type="hidden" name="from" value="profile" />
  106. <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
  107. </p>
  108. <h3><?php _e('Personal Options'); ?></h3>
  109. <table class="form-table">
  110. <?php if ( rich_edit_exists() && !( IS_PROFILE_PAGE && !$user_can_edit ) ) : // don't bother showing the option if the editor has been removed ?>
  111. <tr>
  112. <th scope="row"><?php _e('Visual Editor')?></th>
  113. <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>
  114. </tr>
  115. <?php endif; ?>
  116. <?php if (count($_wp_admin_css_colors) > 1 ) : ?>
  117. <tr>
  118. <th scope="row"><?php _e('Admin Color Scheme')?></th>
  119. <td><fieldset><legend class="screen-reader-text"><span><?php _e('Admin Color Scheme')?></span></legend>
  120. <?php
  121. $current_color = get_user_option('admin_color', $user_id);
  122. if ( empty($current_color) )
  123. $current_color = 'fresh';
  124. foreach ( $_wp_admin_css_colors as $color => $color_info ): ?>
  125. <div class="color-option"><input name="admin_color" id="admin_color_<?php echo $color; ?>" type="radio" value="<?php echo esc_attr($color) ?>" class="tog" <?php checked($color, $current_color); ?> />
  126. <table class="color-palette">
  127. <tr>
  128. <?php foreach ( $color_info->colors as $html_color ): ?>
  129. <td style="background-color: <?php echo $html_color ?>" title="<?php echo $color ?>">&nbsp;</td>
  130. <?php endforeach; ?>
  131. </tr>
  132. </table>
  133. <label for="admin_color_<?php echo $color; ?>"><?php echo $color_info->name ?></label>
  134. </div>
  135. <?php endforeach; ?>
  136. </fieldset></td>
  137. </tr>
  138. <?php if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
  139. <tr>
  140. <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
  141. <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">More information</a>'); ?></td>
  142. </tr>
  143. <?php
  144. endif;
  145. endif;
  146. do_action('personal_options', $profileuser);
  147. ?>
  148. </table>
  149. <?php
  150. if ( IS_PROFILE_PAGE )
  151. do_action('profile_personal_options', $profileuser);
  152. ?>
  153. <h3><?php _e('Name') ?></h3>
  154. <table class="form-table">
  155. <tr>
  156. <th><label for="user_login"><?php _e('Username'); ?></label></th>
  157. <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('Your username cannot be changed.'); ?></span></td>
  158. </tr>
  159. <?php if ( !IS_PROFILE_PAGE ): ?>
  160. <tr><th><label for="role"><?php _e('Role:') ?></label></th>
  161. <td><select name="role" id="role">
  162. <?php
  163. // Get the highest/primary role for this user
  164. // TODO: create a function that does this: wp_get_user_role()
  165. $user_roles = $profileuser->roles;
  166. $user_role = array_shift($user_roles);
  167. // print the full list of roles with the primary one selected.
  168. wp_dropdown_roles($user_role);
  169. // print the 'no role' option. Make it selected if the user has no role yet.
  170. if ( $user_role )
  171. echo '<option value="">' . __('&mdash; No role for this blog &mdash;') . '</option>';
  172. else
  173. echo '<option value="" selected="selected">' . __('&mdash; No role for this blog &mdash;') . '</option>';
  174. ?>
  175. </select></td></tr>
  176. <?php endif; //!IS_PROFILE_PAGE ?>
  177. <tr>
  178. <th><label for="first_name"><?php _e('First name') ?></label></th>
  179. <td><input type="text" name="first_name" id="first_name" value="<?php echo esc_attr($profileuser->first_name) ?>" class="regular-text" /></td>
  180. </tr>
  181. <tr>
  182. <th><label for="last_name"><?php _e('Last name') ?></label></th>
  183. <td><input type="text" name="last_name" id="last_name" value="<?php echo esc_attr($profileuser->last_name) ?>" class="regular-text" /></td>
  184. </tr>
  185. <tr>
  186. <th><label for="nickname"><?php _e('Nickname'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
  187. <td><input type="text" name="nickname" id="nickname" value="<?php echo esc_attr($profileuser->nickname) ?>" class="regular-text" /></td>
  188. </tr>
  189. <tr>
  190. <th><label for="display_name"><?php _e('Display name publicly as') ?></label></th>
  191. <td>
  192. <select name="display_name" id="display_name">
  193. <?php
  194. $public_display = array();
  195. $public_display['display_nickname'] = $profileuser->nickname;
  196. $public_display['display_username'] = $profileuser->user_login;
  197. if ( !empty($profileuser->first_name) )
  198. $public_display['display_firstname'] = $profileuser->first_name;
  199. if ( !empty($profileuser->last_name) )
  200. $public_display['display_lastname'] = $profileuser->last_name;
  201. if ( !empty($profileuser->first_name) && !empty($profileuser->last_name) ) {
  202. $public_display['display_firstlast'] = $profileuser->first_name . ' ' . $profileuser->last_name;
  203. $public_display['display_lastfirst'] = $profileuser->last_name . ' ' . $profileuser->first_name;
  204. }
  205. if ( !in_array( $profileuser->display_name, $public_display ) )// Only add this if it isn't duplicated elsewhere
  206. $public_display = array( 'display_displayname' => $profileuser->display_name ) + $public_display;
  207. $public_display = array_map( 'trim', $public_display );
  208. foreach ( $public_display as $id => $item ) {
  209. ?>
  210. <option id="<?php echo $id; ?>" value="<?php echo esc_attr($item); ?>"<?php selected( $profileuser->display_name, $item ); ?>><?php echo $item; ?></option>
  211. <?php
  212. }
  213. ?>
  214. </select>
  215. </td>
  216. </tr>
  217. </table>
  218. <h3><?php _e('Contact Info') ?></h3>
  219. <table class="form-table">
  220. <tr>
  221. <th><label for="email"><?php _e('E-mail'); ?> <span class="description"><?php _e('(required)'); ?></span></label></th>
  222. <td><input type="text" name="email" id="email" value="<?php echo esc_attr($profileuser->user_email) ?>" class="regular-text" /></td>
  223. </tr>
  224. <tr>
  225. <th><label for="url"><?php _e('Website') ?></label></th>
  226. <td><input type="text" name="url" id="url" value="<?php echo esc_attr($profileuser->user_url) ?>" class="regular-text code" /></td>
  227. </tr>
  228. <?php
  229. foreach (_wp_get_user_contactmethods() as $name => $desc) {
  230. ?>
  231. <tr>
  232. <th><label for="<?php echo $name; ?>"><?php echo apply_filters('user_'.$name.'_label', $desc); ?></label></th>
  233. <td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr($profileuser->$name) ?>" class="regular-text" /></td>
  234. </tr>
  235. <?php
  236. }
  237. ?>
  238. </table>
  239. <h3><?php IS_PROFILE_PAGE ? _e('About Yourself') : _e('About the user'); ?></h3>
  240. <table class="form-table">
  241. <tr>
  242. <th><label for="description"><?php _e('Biographical Info'); ?></label></th>
  243. <td><textarea name="description" id="description" rows="5" cols="30"><?php echo esc_html($profileuser->description); ?></textarea><br />
  244. <span class="description"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></span></td>
  245. </tr>
  246. <?php
  247. $show_password_fields = apply_filters('show_password_fields', true, $profileuser);
  248. if ( $show_password_fields ) :
  249. ?>
  250. <tr id="password">
  251. <th><label for="pass1"><?php _e('New Password'); ?></label></th>
  252. <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 />
  253. <input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("Type your new password again."); ?></span><br />
  254. <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
  255. <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>
  256. </td>
  257. </tr>
  258. <?php endif; ?>
  259. </table>
  260. <?php
  261. if ( IS_PROFILE_PAGE ) {
  262. do_action('show_user_profile', $profileuser);
  263. } else {
  264. do_action('edit_user_profile', $profileuser);
  265. }
  266. ?>
  267. <?php if ( count($profileuser->caps) > count($profileuser->roles) && apply_filters('additional_capabilities_display', true, $profileuser) ) { ?>
  268. <br class="clear" />
  269. <table width="99%" style="border: none;" cellspacing="2" cellpadding="3" class="editform">
  270. <tr>
  271. <th scope="row"><?php _e('Additional Capabilities') ?></th>
  272. <td><?php
  273. $output = '';
  274. foreach ( $profileuser->caps as $cap => $value ) {
  275. if ( !$wp_roles->is_role($cap) ) {
  276. if ( $output != '' )
  277. $output .= ', ';
  278. $output .= $value ? $cap : "Denied: {$cap}";
  279. }
  280. }
  281. echo $output;
  282. ?></td>
  283. </tr>
  284. </table>
  285. <?php } ?>
  286. <p class="submit">
  287. <input type="hidden" name="action" value="update" />
  288. <input type="hidden" name="user_id" id="user_id" value="<?php echo esc_attr($user_id); ?>" />
  289. <input type="submit" class="button-primary" value="<?php IS_PROFILE_PAGE ? esc_attr_e('Update Profile') : esc_attr_e('Update User') ?>" name="submit" />
  290. </p>
  291. </form>
  292. </div>
  293. <?php
  294. break;
  295. }
  296. include('admin-footer.php');
  297. ?>