WPINC_pluggable.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki
interface PluggableFacadeInterface {
function wp_set_current_user($id, $name = '');
function wp_get_current_user();
function get_userdata( $user_id );
function get_user_by( $field, $value );
function cache_users( $user_ids );
function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() );
function wp_authenticate($username, $password);
function wp_logout();
function wp_validate_auth_cookie($cookie = '', $scheme = '');
function wp_generate_auth_cookie( $user_id, $expiration, $scheme = 'auth', $token = '' );
function wp_parse_auth_cookie($cookie = '', $scheme = '');
function wp_set_auth_cookie( $user_id, $remember = false, $secure = '', $token = '' );
function wp_clear_auth_cookie();
function is_user_logged_in();
function auth_redirect();
function check_admin_referer( $action = -1, $query_arg = '_wpnonce' );
function check_ajax_referer( $action = -1, $query_arg = false, $die = true );
function wp_redirect($location, $status = 302);
function wp_sanitize_redirect($location);
function _wp_sanitize_utf8_in_redirect( $matches );
function wp_safe_redirect($location, $status = 302);
function wp_validate_redirect($location, $default = '');
function wp_notify_postauthor( $comment_id, $deprecated = null );
function wp_notify_moderator($comment_id);
function wp_password_change_notification( $user );
function wp_new_user_notification( $user_id, $deprecated = null, $notify = '' );
function wp_nonce_tick();
function wp_verify_nonce( $nonce, $action = -1 );
function wp_create_nonce($action = -1);
function wp_salt( $scheme = 'auth' );
function wp_hash($data, $scheme = 'auth');
function wp_hash_password($password);
function wp_check_password($password, $hash, $user_id = '');
function wp_generate_password( $length = 12, $special_chars = true, $extra_special_chars = false );
function wp_rand( $min = 0, $max = 0 );
function wp_set_password( $password, $user_id );
function get_avatar( $id_or_email, $size = 96, $default = '', $alt = '', $args = null );
function wp_text_diff( $left_string, $right_string, $args = null );
}