WP_REST_Users_Controller
- Since
- 4.7.0
- Source
wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:17
Core class used to manage users via the REST API.
Compatibility
- WordPress
- since 4.7.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Hooks and filters fired · 10
Every hook that fires from inside WP_REST_Users_Controller, in the order it appears in the class, grouped by the method that fires it.
WP_REST_Users_Controller::create_item()
- do_action( rest_insert_user )action line 637
- do_action( rest_after_insert_user )action line 669
WP_REST_Users_Controller::update_item()
- do_action( rest_insert_user )action line 792
- do_action( rest_after_insert_user )action line 818
WP_REST_Users_Controller::prepare_item_for_response()
- apply_filters( rest_prepare_user )filter line 1105
Properties · 2
$metaWP_REST_User_Meta_Fieldsprotected- Instance of a user meta fields object.
$allow_batcharrayprotected- Whether the controller supports batching.
Methods · 27
- __construct()Constructor.
- register_routes()Registers the routes for users.
- check_reassign()Checks for a valid value for the reassign parameter when deleting users.
- get_items_permissions_check()Permissions check for getting all users.
- get_items()Retrieves all users.
- get_user()Get the user, if the ID is valid.
- get_item_permissions_check()Checks if a given request has access to read a user.
- get_item()Retrieves a single user.
- get_current_item()Retrieves the current user.
- create_item_permissions_check()Checks if a given request has access create users.
- create_item()Creates a single user.
- update_item_permissions_check()Checks if a given request has access to update a user.
- update_item()Updates a single user.
- update_current_item_permissions_check()Checks if a given request has access to update the current user.
- update_current_item()Updates the current user.
- delete_item_permissions_check()Checks if a given request has access delete a user.
- delete_item()Deletes a single user.
- delete_current_item_permissions_check()Checks if a given request has access to delete the current user.
- delete_current_item()Deletes the current user.
- prepare_item_for_response()Prepares a single user output for response.
- prepare_links()Prepares links for the user request.
- prepare_item_for_database()Prepares a single user for creation or update.
- check_role_update()Determines if the current user is allowed to make the desired roles change.
- check_username()Check a username for the REST API.
- check_user_password()Check a user password for the REST API.
- get_item_schema()Retrieves the user's schema, conforming to JSON Schema.
- get_collection_params()Retrieves the query params for collections.
Source code
class WP_REST_Users_Controller extends WP_REST_Controller { /** * Instance of a user meta fields object. * * @since 4.7.0 * @var WP_REST_User_Meta_Fields */ protected $meta; /** * Whether the controller supports batching. * * @since 6.6.0 * @var array */ protected $allow_batch = array( 'v1' => true ); /** * Constructor. * * @since 4.7.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'users'; $this->meta = new WP_REST_User_Meta_Fields(); } /** * Registers the routes for users. * * @since 4.7.0 * * @see register_rest_route() */ public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base, array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_items' ), 'permission_callback' => array( $this, 'get_items_permissions_check' ), 'args' => $this->get_collection_params(), ), array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( $this, 'create_item' ), 'permission_callback' => array( $this, 'create_item_permissions_check' ), 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ), ), 'allow_batch' => $this->allow_batch, 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array( 'args' => array( 'id' => array( 'description' => __( 'Unique identifier for the user.' ), 'type' => 'integer', ), ), array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), 'args' => array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ), ), array( 'methods' => WP_REST_Server::EDITABLE,Changelog
Introduced in 4.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.7.7 tag, from
src/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.