wp admin includes user.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface AdminUserInterface {
    function add_user();
    function edit_user( $user_id = 0 );
    function get_editable_roles();
    function get_user_to_edit( $user_id );
    function get_users_drafts( $user_id );
    function wp_delete_user( $id, $reassign = null );
    function wp_revoke_user($id);
    function default_password_nag_handler($errors = false);
    function default_password_nag_edit_user($user_ID, $old_data);
    function default_password_nag();
    function delete_users_add_js();
    function use_ssl_preference($user);
    function admin_created_user_email( $text );
}