当前位置: 首页>>代码示例>>PHP>>正文


PHP edit_user函数代码示例

本文整理汇总了PHP中edit_user函数的典型用法代码示例。如果您正苦于以下问题:PHP edit_user函数的具体用法?PHP edit_user怎么用?PHP edit_user使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了edit_user函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: test_xprofile_sync_bp_profile_new_user

 /**
  * @group xprofile_set_field_data
  * @ticket BP5836
  */
 public function test_xprofile_sync_bp_profile_new_user()
 {
     $post_vars = $_POST;
     $_POST = array('user_login' => 'foobar', 'pass1' => 'password', 'pass2' => 'password', 'role' => 'subscriber', 'email' => 'foo@bar.com', 'first_name' => 'Foo', 'last_name' => 'Bar');
     $id = add_user();
     $display_name = 'Bar Foo';
     $_POST = array('display_name' => $display_name, 'email' => 'foo@bar.com', 'nickname' => 'foobar');
     $id = edit_user($id);
     // clean up post vars
     $_POST = $post_vars;
     $this->assertEquals($display_name, xprofile_get_field_data(bp_xprofile_fullname_field_id(), $id));
 }
开发者ID:dcavins,项目名称:buddypress-svn,代码行数:16,代码来源:functions.php

示例2: add_user

/**
 * Creates a new user from the "Users" form using $_POST information.
 *
 * It seems that the first half is for backwards compatibility, but only
 * has the ability to alter the user's role. WordPress core seems to
 * use this function only in the second way, running edit_user() with
 * no id so as to create a new user.
 *
 * @since 2.0
 *
 * @param int $user_id Optional. User ID.
 * @return null|WP_Error|int Null when adding user, WP_Error or User ID integer when no parameters.
 */
function add_user()
{
    if (func_num_args()) {
        // The hackiest hack that ever did hack
        global $current_user, $wp_roles;
        $user_id = (int) func_get_arg(0);
        if (isset($_POST['role'])) {
            $new_role = sanitize_text_field($_POST['role']);
            // Don't let anyone with 'edit_users' (admins) edit their own role to something without it.
            if ($user_id != $current_user->id || $wp_roles->role_objects[$new_role]->has_cap('edit_users')) {
                // If the new role isn't editable by the logged-in user die with error
                $editable_roles = get_editable_roles();
                if (empty($editable_roles[$new_role])) {
                    wp_die(__('You can’t give users that role.'));
                }
                $user = new WP_User($user_id);
                $user->set_role($new_role);
            }
        }
    } else {
        add_action('user_register', 'add_user');
        // See above
        return edit_user();
    }
}
开发者ID:laiello,项目名称:cartonbank,代码行数:38,代码来源:user.php

示例3: rcl_edit_profile

function rcl_edit_profile()
{
    global $user_ID;
    if (!wp_verify_nonce($_POST['_wpnonce'], 'update-profile_' . $user_ID)) {
        return false;
    }
    //if(isset($_POST['pass1']))  $_POST['pass1'] = str_replace('\\\\','\\',$_POST['pass1']);
    if (defined('ABSPATH')) {
        require_once ABSPATH . 'wp-admin/includes/user.php';
    } else {
        require_once '../wp-admin/includes/user.php';
    }
    //require_once( ABSPATH . WPINC . '/registration.php' );
    //echo $_POST['pass1'];exit;
    $redirect_url = rcl_format_url(get_author_posts_url($user_ID), 'profile') . '&updated=true';
    $args = array('hide_empty' => false);
    $allterms = get_terms('category', $args);
    rcl_update_profile_fields($user_ID);
    check_admin_referer('update-profile_' . $user_ID);
    $errors = edit_user($user_ID);
    if (is_wp_error($errors)) {
        foreach ($errors->get_error_messages() as $message) {
            $errmsg = "{$message}";
        }
    }
    if (isset($errmsg)) {
        wp_die($errmsg);
    }
    do_action('personal_options_update', $user_ID);
    wp_redirect($redirect_url);
}
开发者ID:stanislav-chechun,项目名称:campus-rize,代码行数:31,代码来源:index.php

示例4: wpu_check_for_action

function wpu_check_for_action()
{
    global $user_ID, $wp_version;
    if (isset($_GET['wpu_action'])) {
        if ('activate' == $_GET['wpu_action']) {
            check_admin_referer('wp-united-switch-theme_' . $_GET['template']);
            if (isset($_GET['template'])) {
                update_usermeta($user_ID, 'WPU_MyTemplate', $_GET['template']);
            }
            if (isset($_GET['stylesheet'])) {
                update_usermeta($user_ID, 'WPU_MyStylesheet', $_GET['stylesheet']);
            }
            $wpuConnSettings = get_settings('wputd_connection');
            wp_redirect('admin.php?page=' . $wpuConnSettings['full_path_to_plugin'] . '&activated=true&wputab=themes');
            exit;
        } elseif ('update-blog-profile' == $_GET['wpu_action']) {
            check_admin_referer('update-blog-profile_' . $user_ID);
            $errors = edit_user($user_ID);
            //$errors behaves differently post-WP 2.1
            if ((double) $wp_version >= 2.1) {
                //WordPress >= 2.1
                if (is_wp_error($errors)) {
                    foreach ($errors->get_error_messages() as $message) {
                        echo "<li>{$message}</li>";
                    }
                }
            } else {
                //WP 2.0x
                if (is_array($errors)) {
                    if (count($errors) != 0) {
                        foreach ($errors as $id => $error) {
                            echo $error . '<br/>';
                        }
                        exit;
                    }
                }
            }
            if (!isset($_POST['rich_editing'])) {
                $_POST['rich_editing'] = 'false';
            }
            update_user_option($current_user->id, 'rich_editing', $_POST['rich_editing'], true);
            //
            //	UPDATE BLOG DETAILS
            //
            $blog_title = __('My Blog');
            $blog_tagline = __('My description will go here');
            if (isset($_POST['blog_title'])) {
                $blog_title = wp_specialchars(trim($_POST['blog_title']));
            }
            if (isset($_POST['blog_tagline'])) {
                $blog_tagline = wp_specialchars(trim($_POST['blog_tagline']));
            }
            update_usermeta($user_ID, 'blog_title', $blog_title);
            update_usermeta($user_ID, 'blog_tagline', $blog_tagline);
            $wpuConnSettings = get_settings('wputd_connection');
            wp_redirect('admin.php?page=' . $wpuConnSettings['full_path_to_plugin'] . '&updated=true&wputab=bset');
            exit;
        }
    }
}
开发者ID:Oddsor,项目名称:lpt-forum,代码行数:60,代码来源:wpu-plugin.php

示例5: update

 function update()
 {
     if (!isset($_POST['action']) || 'app-edit-profile' != $_POST['action']) {
         return;
     }
     check_admin_referer('app-edit-profile');
     require ABSPATH . '/wp-admin/includes/user.php';
     $r = edit_user($_POST['user_id']);
     if (is_wp_error($r)) {
         $this->error = $r->get_error_message();
     } else {
         wp_redirect('./?updated=true');
         exit;
     }
 }
开发者ID:joaosigno,项目名称:dazake-job,代码行数:15,代码来源:page-edit-profile.php

示例6: add_user

function add_user() {
	if ( func_num_args() ) { // The hackiest hack that ever did hack
		global $current_user, $wp_roles;
		$user_id = (int) func_get_arg( 0 );

		if ( isset( $_POST['role'] ) ) {
			if( $user_id != $current_user->id || $wp_roles->role_objects[$_POST['role']]->has_cap( 'edit_users' ) ) {
				$user = new WP_User( $user_id );
				$user->set_role( $_POST['role'] );
			}
		}
	} else {
		add_action( 'user_register', 'add_user' ); // See above
		return edit_user();
	}
}
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:16,代码来源:user.php

示例7: update

 function update()
 {
     if (!isset($_POST['action']) || 'app-edit-profile' != $_POST['action']) {
         return;
     }
     check_admin_referer('app-edit-profile');
     require ABSPATH . '/wp-admin/includes/user.php';
     $r = edit_user($_POST['user_id']);
     if (is_wp_error($r)) {
         $this->errors = $r;
     } else {
         do_action('personal_options_update', $_POST['user_id']);
         appthemes_add_notice('updated-profile', __('Your profile has been updated.', APP_TD), 'success');
         $redirect_url = add_query_arg(array('updated' => 'true'));
         wp_redirect($redirect_url);
         exit;
     }
 }
开发者ID:TopLineMediaTeam,项目名称:horseshow,代码行数:18,代码来源:view-edit-profile.php

示例8: uf_perform_profile_edit

/**
 * Edits the user
 *
 * @wp-hook	uf_profile
 * @return	void
 */
function uf_perform_profile_edit()
{
    // get user id
    $user_id = get_current_user_id();
    // perform profile actions for plugins
    do_action('personal_options_update', $user_id);
    // edit user
    if (!function_exists('edit_user')) {
        require_once ABSPATH . '/wp-admin/includes/user.php';
    }
    $errors = edit_user($user_id);
    // check for errors (mainly password)
    if (!is_wp_error($errors)) {
        $message = 'updated';
    } else {
        $message = $errors->get_error_code();
    }
    // set the filter
    $url = home_url('/user-profile/?message=' . $message);
    $url = apply_filters('uf_perform_profile_edit_redirect_url', $url, $message);
    wp_safe_redirect($url);
    exit;
}
开发者ID:WordImpress,项目名称:User-Frontend,代码行数:29,代码来源:action-profile.php

示例9: wp_ajax_add_user

/**
 * Ajax handler for adding a user.
 *
 * @since 3.1.0
 *
 * @global WP_List_Table $wp_list_table
 *
 * @param string $action Action to perform.
 */
function wp_ajax_add_user($action)
{
    global $wp_list_table;
    if (empty($action)) {
        $action = 'add-user';
    }
    check_ajax_referer($action);
    if (!current_user_can('create_users')) {
        wp_die(-1);
    }
    if (!($user_id = edit_user())) {
        wp_die(0);
    } elseif (is_wp_error($user_id)) {
        $x = new WP_Ajax_Response(array('what' => 'user', 'id' => $user_id));
        $x->send();
    }
    $user_object = get_userdata($user_id);
    $wp_list_table = _get_list_table('WP_Users_List_Table');
    $role = current($user_object->roles);
    $x = new WP_Ajax_Response(array('what' => 'user', 'id' => $user_id, 'data' => $wp_list_table->single_row($user_object, '', $role), 'supplemental' => array('show-link' => sprintf(__('User %s added'), '<a href="#user-' . $user_id . '">' . $user_object->user_login . '</a>'), 'role' => $role)));
    $x->send();
}
开发者ID:hughnet,项目名称:WordPress,代码行数:31,代码来源:ajax-actions.php

示例10: switch

<?php

include 'config.php';
/**  Switch Case to Get Action from controller  **/
switch ($_GET['action']) {
    case 'add_user':
        add_user();
        break;
    case 'get_users':
        get_users();
        break;
    case 'edit_user':
        edit_user();
        break;
    case 'delete_user':
        delete_user();
        break;
    case 'update_user':
        update_user();
        break;
}
/**  Function to Add User  **/
function add_user()
{
    $data = json_decode(file_get_contents("php://input"));
    // print_r($data);
    $full_name = $data->full_name;
    $addr_first = $data->addr_first;
    $addr_second = $data->addr_second;
    $addr_third = $data->addr_third;
    $postcode = $data->postcode;
开发者ID:ashwani-luhaniwal,项目名称:CRUD-App-using-AngularJS-PHP-MySQL,代码行数:31,代码来源:db.php

示例11: __

<?php

global $profileuser, $user_id, $user;
if (isset($_POST['action']) && $_POST['action'] == 'update') {
    if (wp_verify_nonce($_REQUEST['_wpnonce'], 'update-user_' . $user_id)) {
        $msg = '<div class="alert alert-success">' . __('Your details have been updated.', 'membership') . '</div>';
        $user = array('ID' => $_POST['user_id'], 'first_name' => $_POST['first_name'], 'last_name' => $_POST['last_name'], 'nickname' => $_POST['nickname'], 'display_name' => $_POST['display_name'], 'user_email' => $_POST['email'], 'user_url' => $_POST['url']);
        if (!empty($_POST['pass1'])) {
            if ($_POST['pass1'] == $_POST['pass2']) {
                $user['user_pass'] = $_POST['pass1'];
            } else {
                $msg = "<div class='alert alert-error'>" . __('Your password settings do not match', 'membership') . "</div>";
            }
        }
        $errors = edit_user($user['ID']);
        $profileuser = get_user_to_edit($user_id);
        if (isset($errors) && is_wp_error($errors)) {
            $msg = "<div class='alert alert-error'>" . implode("<br/>\n", $errors->get_error_messages()) . "</div>";
        }
    } else {
        $msg = "<div class='alert alert-error'>" . __('Your details could not be updated.', 'membership') . "</div>";
    }
    do_action('edit_user_profile_update', $user_id);
}
?>

<div id='membership-wrapper'>

<?php 
if (!empty($msg)) {
    ?>
开发者ID:EdoMagen,项目名称:project-s-v2,代码行数:31,代码来源:account.form.php

示例12: ym_user_profile_form

function ym_user_profile_form()
{
    get_currentuserinfo();
    global $current_user, $wpdb;
    $updated = false;
    $action = ym_post('ym_action');
    if ($action == 'ym_user_profile_update') {
        include 'wp-admin/includes/user.php';
        include 'wp-includes/registration.php';
        do_action('personal_options_update', $current_user->ID);
        $errors = edit_user($current_user->ID);
        if (!is_wp_error($errors)) {
            $html = '<p>' . __('Your Profile has been updated') . '</p>';
            $html .= '<meta http-equiv="refresh" content="3" />';
            return $html;
        }
    }
    $html = '';
    if (isset($errors) && is_wp_error($errors)) {
        $html .= '<div class="error"><p>' . implode("</p>\n<p>", $errors->get_error_messages()) . '</p></div>';
    } else {
        if (ym_get('updated')) {
            $html .= '<div id="message" class="updated"><p><strong>' . __('User updated.') . '</strong></p></div>';
        }
    }
    if (!function_exists(_wp_get_user_contactmethods)) {
        function _wp_get_user_contactmethods()
        {
            $user_contactmethods = array('aim' => __('AIM'), 'yim' => __('Yahoo IM'), 'jabber' => __('Jabber / Google Talk'));
            return apply_filters('user_contactmethods', $user_contactmethods);
        }
    }
    $html .= '
<form action="" method="post">
	<input type="hidden" name="ym_action" value="ym_user_profile_update" />
	
<table class="form-table">
	<tr><td colspan="2"><h3>' . __('Name') . '</h3></td></tr>
	<tr>
		<th><label for="first_name">' . __('First Name') . '</label></th>
		<td><input type="text" name="first_name" id="first_name" value="' . esc_attr($current_user->user_firstname) . '" class="regular-text" /></td>
	</tr>

	<tr>
		<th><label for="last_name">' . __('Last Name') . '</label></th>
		<td><input type="text" name="last_name" id="last_name" value="' . esc_attr($current_user->user_lastname) . '" class="regular-text" /></td>
	</tr>

	<tr>
		<th><label for="nickname">' . __('Nickname') . ' <span class="description">' . __('(required)') . '</span></label></th>
		<td><input type="text" name="nickname" id="nickname" value="' . esc_attr($current_user->nickname) . '" class="regular-text" /></td>
	</tr>

	<tr>
		<th><label for="display_name">' . __('Display name publicly as') . '</label></th>
		<td>
			<select name="display_name" id="display_name">
			';
    $public_display = array();
    $public_display['display_username'] = $current_user->user_login;
    $public_display['display_nickname'] = $current_user->nickname;
    if (!empty($profileuser->first_name)) {
        $public_display['display_firstname'] = $current_user->first_name;
    }
    if (!empty($profileuser->last_name)) {
        $public_display['display_lastname'] = $current_user->last_name;
    }
    if (!empty($profileuser->first_name) && !empty($current_user->last_name)) {
        $public_display['display_firstlast'] = $current_user->first_name . ' ' . $current_user->last_name;
        $public_display['display_lastfirst'] = $current_user->last_name . ' ' . $current_user->first_name;
    }
    if (!in_array($current_user->display_name, $public_display)) {
        // Only add this if it isn't duplicated elsewhere
        $public_display = array('display_displayname' => $current_user->display_name) + $public_display;
    }
    $public_display = array_map('trim', $public_display);
    $public_display = array_unique($public_display);
    foreach ($public_display as $id => $item) {
        $html .= '<option id="' . $id . '" value="' . esc_attr($item) . '"' . selected($current_user->display_name, $item, FALSE) . '>' . $item . '</option>';
    }
    $html .= '
			</select>
		</td>
	</tr>
	<tr><td colspan="2">
<h3>' . __('Contact Info') . '</h3>
	</td></tr>
<tr>
	<th><label for="email">' . __('E-mail') . ' <span class="description">' . __('(required)') . '</span></label></th>
	<td><input type="text" name="email" id="email" value="' . esc_attr($current_user->user_email) . '" class="regular-text" />
	';
    $new_email = get_option($current_user->ID . '_new_email');
    if ($new_email && $new_email != $current_user->user_email) {
        $html .= '
	<div class="updated inline">
	<p>' . sprintf(__('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(admin_url('profile.php?dismiss=' . $current_user->ID . '_new_email'))) . '</p>
	</div>
		';
    }
    $html .= '
//.........这里部分代码省略.........
开发者ID:AdultStack,项目名称:ap-members,代码行数:101,代码来源:ym_functions.include.php

示例13: add_user

function add_user()
{
    return edit_user();
}
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:4,代码来源:admin-functions.php

示例14: test_edit_user_blank_pw

 /**
  * Checks that calling edit_user() with no password returns an error when adding, and doesn't when updating.
  *
  * @ticket 35715
  */
 function test_edit_user_blank_pw()
 {
     $_POST = $_GET = $_REQUEST = array();
     $_POST['role'] = 'subscriber';
     $_POST['email'] = 'user1@example.com';
     $_POST['user_login'] = 'user_login1';
     $_POST['first_name'] = 'first_name1';
     $_POST['last_name'] = 'last_name1';
     $_POST['nickname'] = 'nickname1';
     $_POST['display_name'] = 'display_name1';
     // Check new user with missing password.
     $response = edit_user();
     $this->assertInstanceOf('WP_Error', $response);
     $this->assertEquals('pass', $response->get_error_code());
     // Check new user with password set.
     $_POST['pass1'] = $_POST['pass2'] = 'password';
     $user_id = edit_user();
     $user = get_user_by('ID', $user_id);
     $this->assertInternalType('int', $user_id);
     $this->assertInstanceOf('WP_User', $user);
     $this->assertEquals('nickname1', $user->nickname);
     // Check updating user with empty password.
     $_POST['nickname'] = 'nickname_updated';
     $_POST['pass1'] = $_POST['pass2'] = '';
     $user_id = edit_user($user_id);
     $this->assertInternalType('int', $user_id);
     $this->assertEquals('nickname_updated', $user->nickname);
     // Check updating user with missing second password.
     $_POST['nickname'] = 'nickname_updated2';
     $_POST['pass1'] = 'blank_pass2';
     $_POST['pass2'] = '';
     $response = edit_user($user_id);
     $this->assertInstanceOf('WP_Error', $response);
     $this->assertEquals('pass', $response->get_error_code());
     $this->assertEquals('nickname_updated', $user->nickname);
     // Check updating user with empty password via `check_passwords` action.
     add_action('check_passwords', array($this, 'action_check_passwords_blank_pw'), 10, 2);
     $user_id = edit_user($user_id);
     remove_action('check_passwords', array($this, 'action_check_passwords_blank_pw'));
     $this->assertInternalType('int', $user_id);
     $this->assertEquals('nickname_updated2', $user->nickname);
 }
开发者ID:aaemnnosttv,项目名称:develop.git.wordpress.org,代码行数:47,代码来源:user.php

示例15: bbp_edit_user_handler

/**
 * Handles the front end user editing
 *
 * @uses is_multisite() To check if it's a multisite
 * @uses bbp_is_user_home() To check if the user is at home (the display page
 *                           is the one of the logged in user)
 * @uses get_option() To get the displayed user's new email id option
 * @uses wpdb::prepare() To sanitize our sql query
 * @uses wpdb::get_var() To execute our query and get back the variable
 * @uses wpdb::query() To execute our query
 * @uses wp_update_user() To update the user
 * @uses delete_option() To delete the displayed user's email id option
 * @uses bbp_get_user_profile_edit_url() To get the edit profile url
 * @uses wp_safe_redirect() To redirect to the url
 * @uses bbp_verify_nonce_request() To verify the nonce and check the request
 * @uses current_user_can() To check if the current user can edit the user
 * @uses do_action() Calls 'personal_options_update' or
 *                   'edit_user_options_update' (based on if it's the user home)
 *                   with the displayed user id
 * @uses edit_user() To edit the user based on the post data
 * @uses get_userdata() To get the user data
 * @uses is_email() To check if the string is an email id or not
 * @uses wpdb::get_blog_prefix() To get the blog prefix
 * @uses is_network_admin() To check if the user is the network admin
 * @uses is_super_admin() To check if the user is super admin
 * @uses revoke_super_admin() To revoke super admin priviledges
 * @uses grant_super_admin() To grant super admin priviledges
 * @uses is_wp_error() To check if the value retrieved is a {@link WP_Error}
 */
function bbp_edit_user_handler()
{
    // Bail if not a POST action
    if ('POST' !== strtoupper($_SERVER['REQUEST_METHOD'])) {
        return;
    }
    // Bail if action is not 'bbp-update-user'
    if (empty($_POST['action']) || 'bbp-update-user' !== $_POST['action']) {
        return;
    }
    // Get the displayed user ID
    $user_id = bbp_get_displayed_user_id();
    global $wpdb, $user_login, $super_admins;
    // Execute confirmed email change. See send_confirmation_on_profile_email().
    if (is_multisite() && bbp_is_user_home_edit() && isset($_GET['newuseremail'])) {
        $new_email = get_option($user_id . '_new_email');
        if ($new_email['hash'] == $_GET['newuseremail']) {
            $user = new stdClass();
            $user->ID = $user_id;
            $user->user_email = esc_html(trim($new_email['newemail']));
            if ($wpdb->get_var($wpdb->prepare("SELECT user_login FROM {$wpdb->signups} WHERE user_login = %s", bbp_get_displayed_user_field('user_login')))) {
                $wpdb->query($wpdb->prepare("UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $user->user_email, bbp_get_displayed_user_field('user_login')));
            }
            wp_update_user(get_object_vars($user));
            delete_option($user_id . '_new_email');
            wp_safe_redirect(add_query_arg(array('updated' => 'true'), bbp_get_user_profile_edit_url($user_id)));
            exit;
        }
    } elseif (is_multisite() && bbp_is_user_home_edit() && !empty($_GET['dismiss']) && $user_id . '_new_email' == $_GET['dismiss']) {
        delete_option($user_id . '_new_email');
        wp_safe_redirect(add_query_arg(array('updated' => 'true'), bbp_get_user_profile_edit_url($user_id)));
        exit;
    }
    // Nonce check
    if (!bbp_verify_nonce_request('update-user_' . $user_id)) {
        bbp_add_error('bbp_update_user_nonce', __('<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress'));
        return;
    }
    // Cap check
    if (!current_user_can('edit_user', $user_id)) {
        bbp_add_error('bbp_update_user_capability', __('<strong>ERROR</strong>: Are you sure you wanted to do that?', 'bbpress'));
        return;
    }
    // Do action based on who's profile you're editing
    $edit_action = bbp_is_user_home_edit() ? 'personal_options_update' : 'edit_user_profile_update';
    do_action($edit_action, $user_id);
    // Multisite handles the trouble for us ;)
    if (!is_multisite()) {
        $edit_user = edit_user($user_id);
        // Single site means we need to do some manual labor
    } else {
        $user = get_userdata($user_id);
        // Update the email address in signups, if present.
        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))) {
            $wpdb->query($wpdb->prepare("UPDATE {$wpdb->signups} SET user_email = %s WHERE user_login = %s", $_POST['email'], $user_login));
        }
        // WPMU must delete the user from the current blog if WP added him after editing.
        $delete_role = false;
        $blog_prefix = $wpdb->get_blog_prefix();
        if ($user_id != $user_id) {
            $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:{}'");
            if (!is_network_admin() && null == $cap && $_POST['role'] == '') {
                $_POST['role'] = 'contributor';
                $delete_role = true;
            }
        }
        $edit_user = edit_user($user_id);
        // stops users being added to current blog when they are edited
        if (true === $delete_role) {
            delete_user_meta($user_id, $blog_prefix . 'capabilities');
        }
//.........这里部分代码省略.........
开发者ID:hscale,项目名称:webento,代码行数:101,代码来源:bbp-user-functions.php


注:本文中的edit_user函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。