Merge user-edit.php and profile.php. Props nbachiyski. fixes #5736
git-svn-id: http://svn.automattic.com/wordpress/trunk@6697 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e2d55ab832
commit
ece19d2bfb
|
@ -1,198 +1,4 @@
|
|||
<?php
|
||||
require_once('admin.php');
|
||||
|
||||
function profile_js ( ) {
|
||||
$is_profile_page = true;
|
||||
require_once('user-edit.php');
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
function check_pass_strength ( ) {
|
||||
|
||||
var pass = jQuery('#pass1').val();
|
||||
var user = jQuery('#user_login').val();
|
||||
|
||||
// get the result as an object, i'm tired of typing it
|
||||
var res = jQuery('#pass-strength-result');
|
||||
|
||||
var strength = passwordStrength(pass, user);
|
||||
|
||||
jQuery(res).removeClass('short bad good strong');
|
||||
|
||||
if ( strength == 'Bad' ) {
|
||||
jQuery(res).addClass('bad');
|
||||
jQuery(res).html( pwsL10n.bad );
|
||||
}
|
||||
else if ( strength == 'Good' ) {
|
||||
jQuery(res).addClass('good');
|
||||
jQuery(res).html( pwsL10n.good );
|
||||
}
|
||||
else if ( strength == 'Strong' ) {
|
||||
jQuery(res).addClass('strong');
|
||||
jQuery(res).html( pwsL10n.strong );
|
||||
}
|
||||
else {
|
||||
// this catches 'Too short' and the off chance anything else comes along
|
||||
jQuery(res).addClass('short');
|
||||
jQuery(res).html( pwsL10n.short );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
jQuery(document).ready( function() { jQuery('#pass1').keyup( check_pass_strength ) } );
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
add_action('admin_head', 'profile_js');
|
||||
|
||||
wp_enqueue_script('jquery');
|
||||
wp_enqueue_script('password-strength-meter');
|
||||
|
||||
$title = __('Profile');
|
||||
|
||||
if ( current_user_can('edit_users') )
|
||||
$parent_file = 'users.php';
|
||||
else
|
||||
$parent_file = 'profile.php';
|
||||
include_once('admin-header.php');
|
||||
$profileuser = get_user_to_edit($user_ID);
|
||||
|
||||
$bookmarklet_height= 440;
|
||||
?>
|
||||
|
||||
<?php if ( isset($_GET['updated']) ) { ?>
|
||||
<div id="message" class="updated fade">
|
||||
<p><strong><?php _e('Profile updated.') ?></strong></p>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<div class="wrap">
|
||||
<h2><?php _e('Your Profile and Personal Options'); ?></h2>
|
||||
<form name="profile" id="your-profile" action="profile-update.php" method="post">
|
||||
<?php wp_nonce_field('update-profile_' . $user_ID) ?>
|
||||
<p>
|
||||
<input type="hidden" name="from" value="profile" />
|
||||
<input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
|
||||
</p>
|
||||
|
||||
<h3><?php _e('Personal Options'); ?></h3>
|
||||
|
||||
<?php if ( rich_edit_exists() ) : // don't bother showing the option if the editor has been removed ?>
|
||||
<p><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="true" <?php checked('true', get_user_option('rich_editing')); ?> />
|
||||
<?php _e('Use the visual editor when writing') ?></label></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php do_action('profile_personal_options'); ?>
|
||||
|
||||
<p class="submit"><input type="submit" value="<?php _e('Update Profile »') ?>" name="submit" /></p>
|
||||
|
||||
<fieldset id="information">
|
||||
<legend><?php _e('Name'); ?></legend>
|
||||
<p><label><?php _e('Username: (no editing)'); ?><br />
|
||||
<input type="text" name="user_login" id="user_login" value="<?php echo $profileuser->user_login; ?>" disabled="disabled" />
|
||||
</label></p>
|
||||
|
||||
<p><label><?php _e('First name:') ?><br />
|
||||
<input type="text" name="first_name" id="first_name" value="<?php echo $profileuser->first_name ?>" /></label></p>
|
||||
|
||||
<p><label><?php _e('Last name:') ?><br />
|
||||
<input type="text" name="last_name" id="last_name" value="<?php echo $profileuser->last_name ?>" /></label></p>
|
||||
|
||||
<p><label><?php _e('Nickname:') ?><br />
|
||||
<input type="text" name="nickname" id="nickname" value="<?php echo $profileuser->nickname ?>" /></label></p>
|
||||
|
||||
<p><label><?php _e('Display name publicly as:') ?> <br />
|
||||
<select name="display_name" id="display_name">
|
||||
<option value="<?php echo $profileuser->display_name; ?>"><?php echo $profileuser->display_name; ?></option>
|
||||
<option value="<?php echo $profileuser->nickname ?>"><?php echo $profileuser->nickname ?></option>
|
||||
<option value="<?php echo $profileuser->user_login ?>"><?php echo $profileuser->user_login ?></option>
|
||||
<?php if ( !empty( $profileuser->first_name ) ) : ?>
|
||||
<option value="<?php echo $profileuser->first_name ?>"><?php echo $profileuser->first_name ?></option>
|
||||
<?php endif; ?>
|
||||
<?php if ( !empty( $profileuser->last_name ) ) : ?>
|
||||
<option value="<?php echo $profileuser->last_name ?>"><?php echo $profileuser->last_name ?></option>
|
||||
<?php endif; ?>
|
||||
<?php if ( !empty( $profileuser->first_name ) && !empty( $profileuser->last_name ) ) : ?>
|
||||
<option value="<?php echo $profileuser->first_name." ".$profileuser->last_name ?>"><?php echo $profileuser->first_name." ".$profileuser->last_name ?></option>
|
||||
<option value="<?php echo $profileuser->last_name." ".$profileuser->first_name ?>"><?php echo $profileuser->last_name." ".$profileuser->first_name ?></option>
|
||||
<?php endif; ?>
|
||||
</select></label></p>
|
||||
</fieldset>
|
||||
|
||||
<fieldset id="contact-info">
|
||||
<legend><?php _e('Contact Info'); ?></legend>
|
||||
|
||||
<p><label><?php _e('E-mail: (required)') ?><br />
|
||||
<input type="text" name="email" id="email" value="<?php echo $profileuser->user_email ?>" /></label></p>
|
||||
|
||||
<p><label><?php _e('Website:') ?><br />
|
||||
<input type="text" name="url" id="url" value="<?php echo $profileuser->user_url ?>" />
|
||||
</label></p>
|
||||
|
||||
<p><label><?php _e('AIM:') ?><br />
|
||||
<input type="text" name="aim" id="aim" value="<?php echo $profileuser->aim ?>" />
|
||||
</label></p>
|
||||
|
||||
<p><label><?php _e('Yahoo IM:') ?><br />
|
||||
<input type="text" name="yim" id="yim" value="<?php echo $profileuser->yim ?>" />
|
||||
</label></p>
|
||||
|
||||
<p><label><?php _e('Jabber / Google Talk:') ?><br />
|
||||
<input type="text" name="jabber" id="jabber" value="<?php echo $profileuser->jabber ?>" /></label>
|
||||
</p>
|
||||
</fieldset>
|
||||
<br clear="all" />
|
||||
<fieldset id="about-yourself">
|
||||
<legend><?php _e('About Yourself'); ?></legend>
|
||||
<p class="desc"><?php _e('Share a little biographical information. '); ?></p>
|
||||
<p><textarea name="description" id="description" rows="5" cols="30"><?php echo $profileuser->description ?></textarea></p>
|
||||
</fieldset>
|
||||
|
||||
<?php
|
||||
$show_password_fields = apply_filters('show_password_fields', true);
|
||||
if ( $show_password_fields ) :
|
||||
?>
|
||||
<fieldset id="update-password">
|
||||
<legend><?php _e('Update Your Password'); ?></legend>
|
||||
<p class="desc"><?php _e('If you would like to change your password type a new one twice below. Otherwise leave this blank.'); ?></p>
|
||||
<p><label><?php _e('New Password:'); ?><br />
|
||||
<input type="password" name="pass1" id="pass1" size="16" value="" />
|
||||
</label></p>
|
||||
<p><label><?php _e('Type it one more time:'); ?><br />
|
||||
<input type="password" name="pass2" id="pass2" size="16" value="" />
|
||||
</label></p>
|
||||
<p><strong><?php _e('Password Strength:'); ?></strong></p>
|
||||
<div id="pass-strength-result"><?php _e('Too short'); ?></div>
|
||||
<p><?php _e('Hint: Use upper and lower case characters, numbers and symbols like !"?$%^&( in your password.'); ?></p>
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php do_action('show_user_profile'); ?>
|
||||
|
||||
<br clear="all" />
|
||||
|
||||
<table width="99%" border="0" cellspacing="2" cellpadding="3" class="editform">
|
||||
<?php
|
||||
if(count($profileuser->caps) > count($profileuser->roles)):
|
||||
?>
|
||||
<tr>
|
||||
<th scope="row"><?php _e('Additional Capabilities:') ?></th>
|
||||
<td><?php
|
||||
$output = '';
|
||||
foreach($profileuser->caps as $cap => $value) {
|
||||
if(!$wp_roles->is_role($cap)) {
|
||||
if($output != '') $output .= ', ';
|
||||
$output .= $value ? $cap : "Denied: {$cap}";
|
||||
}
|
||||
}
|
||||
echo $output;
|
||||
?></td>
|
||||
</tr>
|
||||
<?php
|
||||
endif;
|
||||
?>
|
||||
</table>
|
||||
<p class="submit"><input type="submit" value="<?php _e('Update Profile »') ?>" name="submit" /></p>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include('admin-footer.php'); ?>
|
||||
|
|
|
@ -1,8 +1,57 @@
|
|||
<?php
|
||||
|
||||
$is_profile_page = isset($is_profile_page) && $is_profile_page? true : false;
|
||||
|
||||
require_once('admin.php');
|
||||
|
||||
$title = __('Edit User');
|
||||
if ( current_user_can('edit_users') )
|
||||
function profile_js ( ) {
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
function check_pass_strength ( ) {
|
||||
|
||||
var pass = jQuery('#pass1').val();
|
||||
var user = jQuery('#user_login').val();
|
||||
|
||||
// get the result as an object, i'm tired of typing it
|
||||
var res = jQuery('#pass-strength-result');
|
||||
|
||||
var strength = passwordStrength(pass, user);
|
||||
|
||||
jQuery(res).removeClass('short bad good strong');
|
||||
|
||||
if ( strength == 'Bad' ) {
|
||||
jQuery(res).addClass('bad');
|
||||
jQuery(res).html( pwsL10n.bad );
|
||||
}
|
||||
else if ( strength == 'Good' ) {
|
||||
jQuery(res).addClass('good');
|
||||
jQuery(res).html( pwsL10n.good );
|
||||
}
|
||||
else if ( strength == 'Strong' ) {
|
||||
jQuery(res).addClass('strong');
|
||||
jQuery(res).html( pwsL10n.strong );
|
||||
}
|
||||
else {
|
||||
// this catches 'Too short' and the off chance anything else comes along
|
||||
jQuery(res).addClass('short');
|
||||
jQuery(res).html( pwsL10n.short );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
jQuery(document).ready( function() { jQuery('#pass1').keyup( check_pass_strength ) } );
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
|
||||
if ( $is_profile_page ) {
|
||||
add_action('admin_head', 'profile_js');
|
||||
wp_enqueue_script('jquery');
|
||||
wp_enqueue_script('password-strength-meter');
|
||||
}
|
||||
|
||||
$title = $is_profile_page? __('Profile') : __('Edit User');
|
||||
if ( current_user_can('edit_users') && !$is_profile_page )
|
||||
$parent_file = 'users.php';
|
||||
else
|
||||
$parent_file = 'profile.php';
|
||||
|
@ -15,7 +64,12 @@ $wp_http_referer = remove_query_arg(array('update', 'delete_count'), stripslashe
|
|||
$user_id = (int) $user_id;
|
||||
|
||||
if ( !$user_id )
|
||||
if ( $is_profile_page ) {
|
||||
$current_user = wp_get_current_user();
|
||||
$user_id = $current_user->ID;
|
||||
} else {
|
||||
wp_die(__('Invalid user ID.'));
|
||||
}
|
||||
|
||||
switch ($action) {
|
||||
case 'switchposts':
|
||||
|
@ -33,10 +87,14 @@ check_admin_referer('update-user_' . $user_id);
|
|||
if ( !current_user_can('edit_user', $user_id) )
|
||||
wp_die(__('You do not have permission to edit this user.'));
|
||||
|
||||
if ( $is_profile_page ) {
|
||||
do_action('personal_options_update');
|
||||
}
|
||||
|
||||
$errors = edit_user($user_id);
|
||||
|
||||
if( !is_wp_error( $errors ) ) {
|
||||
$redirect = "user-edit.php?user_id=$user_id&updated=true";
|
||||
$redirect = ($is_profile_page? "profile.php?" : "user-edit.php?user_id=$user_id&"). "updated=true";
|
||||
$redirect = add_query_arg('wp_http_referer', urlencode($wp_http_referer), $redirect);
|
||||
wp_redirect($redirect);
|
||||
exit;
|
||||
|
@ -54,7 +112,7 @@ include ('admin-header.php');
|
|||
<?php if ( isset($_GET['updated']) ) : ?>
|
||||
<div id="message" class="updated fade">
|
||||
<p><strong><?php _e('User updated.') ?></strong></p>
|
||||
<?php if ( $wp_http_referer ) : ?>
|
||||
<?php if ( $wp_http_referer && !$is_profile_page ) : ?>
|
||||
<p><a href="users.php"><?php _e('« Back to Authors and Users'); ?></a></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
@ -71,9 +129,9 @@ include ('admin-header.php');
|
|||
<?php endif; ?>
|
||||
|
||||
<div class="wrap">
|
||||
<h2><?php _e('Edit User'); ?></h2>
|
||||
<h2><?php $is_profile_page? _e('Your Profile and Personal Options') : _e('Edit User'); ?></h2>
|
||||
|
||||
<form name="profile" id="your-profile" action="user-edit.php" method="post">
|
||||
<form name="profile" id="your-profile" action="" method="post">
|
||||
<?php wp_nonce_field('update-user_' . $user_id) ?>
|
||||
<?php if ( $wp_http_referer ) : ?>
|
||||
<input type="hidden" name="wp_http_referer" value="<?php echo clean_url($wp_http_referer); ?>" />
|
||||
|
@ -83,16 +141,27 @@ include ('admin-header.php');
|
|||
<input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
|
||||
</p>
|
||||
|
||||
<p><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="true" <?php checked('true', $profileuser->rich_editing); ?> /> <?php _e('Use the visual editor when writing'); ?></label></p>
|
||||
<h3><?php _e('Personal Options'); ?></h3>
|
||||
|
||||
<p class="submit"><input type="submit" value="<?php _e('Update User »'); ?>" name="submit" /></p>
|
||||
<?php if ( rich_edit_exists() ) : // don't bother showing the option if the editor has been removed ?>
|
||||
<p><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="true" <?php checked('true', $profileuser->rich_editing); ?> /> <?php _e('Use the visual editor when writing'); ?></label></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
if ( $is_profile_page ) {
|
||||
do_action('profile_personal_options');
|
||||
}
|
||||
?>
|
||||
|
||||
<p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »'); ?>" name="submit" /></p>
|
||||
|
||||
<fieldset>
|
||||
<legend><?php _e('Name'); ?></legend>
|
||||
<p><label><?php _e('Username: (no editing)'); ?><br />
|
||||
<input type="text" name="user_login" value="<?php echo $profileuser->user_login; ?>" disabled="disabled" />
|
||||
<input type="text" name="user_login" id="user_login" value="<?php echo $profileuser->user_login; ?>" disabled="disabled" />
|
||||
</label></p>
|
||||
|
||||
<?php if ( !$is_profile_page ): ?>
|
||||
<p><label><?php _e('Role:') ?><br />
|
||||
<?php
|
||||
// print_r($profileuser);
|
||||
|
@ -114,6 +183,7 @@ else
|
|||
$role_list .= '<option value="" selected="selected">' . __('— No role for this blog —') . '</option>';
|
||||
echo $role_list . '</select>';
|
||||
?></label></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<p><label><?php _e('First name:') ?><br />
|
||||
<input type="text" name="first_name" value="<?php echo $profileuser->first_name ?>" /></label></p>
|
||||
|
@ -168,7 +238,7 @@ echo $role_list . '</select>';
|
|||
</fieldset>
|
||||
<br clear="all" />
|
||||
<fieldset>
|
||||
<legend><?php _e('About the user'); ?></legend>
|
||||
<legend><?php $is_profile_page? _e('About Yourself') : _e('About the user'); ?></legend>
|
||||
<p class="desc"><?php _e('Share a little biographical information to fill out your profile. This may be shown publicly.'); ?></p>
|
||||
<p><textarea name="description" rows="5" cols="30"><?php echo $profileuser->description ?></textarea></p>
|
||||
</fieldset>
|
||||
|
@ -178,18 +248,29 @@ $show_password_fields = apply_filters('show_password_fields', true);
|
|||
if ( $show_password_fields ) :
|
||||
?>
|
||||
<fieldset>
|
||||
<legend><?php _e("Update User's Password"); ?></legend>
|
||||
<p class="desc"><?php _e("If you would like to change the user's password type a new one twice below. Otherwise leave this blank."); ?></p>
|
||||
<legend><?php $is_profile_page? _e('Update Your Password') : _e("Update User's Password"); ?></legend>
|
||||
<p class="desc"><?php _e("If you would like to change the password type a new one twice below. Otherwise leave this blank."); ?></p>
|
||||
<p><label><?php _e('New Password:'); ?><br />
|
||||
<input type="password" name="pass1" size="16" value="" />
|
||||
<input type="password" name="pass1" id="pass1" size="16" value="" />
|
||||
</label></p>
|
||||
<p><label><?php _e('Type it one more time:'); ?><br />
|
||||
<input type="password" name="pass2" size="16" value="" />
|
||||
<input type="password" name="pass2" id="pass2" size="16" value="" />
|
||||
</label></p>
|
||||
<?php if ( $is_profile_page ): ?>
|
||||
<p><strong><?php _e('Password Strength:'); ?></strong></p>
|
||||
<div id="pass-strength-result"><?php _e('Too short'); ?></div>
|
||||
<p><?php _e('Hint: Use upper and lower case characters, numbers and symbols like !"?$%^&( in your password.'); ?></p>
|
||||
<?php endif; ?>
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php do_action('edit_user_profile'); ?>
|
||||
<?php
|
||||
if ( $is_profile_page ) {
|
||||
do_action('show_user_profile');
|
||||
} else {
|
||||
do_action('edit_user_profile');
|
||||
}
|
||||
?>
|
||||
|
||||
<br clear="all" />
|
||||
<table width="99%" border="0" cellspacing="2" cellpadding="3" class="editform">
|
||||
|
@ -216,7 +297,7 @@ if ( $show_password_fields ) :
|
|||
<p class="submit">
|
||||
<input type="hidden" name="action" value="update" />
|
||||
<input type="hidden" name="user_id" id="user_id" value="<?php echo $user_id; ?>" />
|
||||
<input type="submit" value="<?php _e('Update User »') ?>" name="submit" />
|
||||
<input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »') ?>" name="submit" />
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -290,7 +290,9 @@ function map_meta_cap($cap, $user_id) {
|
|||
$caps[] = 'delete_users';
|
||||
break;
|
||||
case 'edit_user':
|
||||
if ( !isset($args[0]) || $user_id != $args[0] ) {
|
||||
$caps[] = 'edit_users';
|
||||
}
|
||||
break;
|
||||
case 'delete_post':
|
||||
$author_data = get_userdata($user_id);
|
||||
|
|
Loading…
Reference in New Issue