Uses
| Uses | Description | 
|---|---|
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: rest_after_insert_user | Fires after a user is completely created or updated via the REST API. | 
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::get_item_schema() | Retrieves the user’s schema, conforming to JSON Schema. | 
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::check_role_update() | Determines if the current user is allowed to make the desired roles change. | 
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::prepare_item_for_database() | Prepares a single user for creation or update. | 
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: WP_REST_Users_Controller::prepare_item_for_response() | Prepares a single user output for response. | 
| wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php: rest_insert_user | Fires immediately after a user is created or updated via the REST API. | 
| wp-includes/ms-site.php: get_site() | Retrieves site data given a site ID or site object. | 
| wp-includes/rest-api.php: rest_ensure_response() | Ensures a REST response is a response object (for consistency). | 
| wp-includes/rest-api.php: rest_url() | Retrieves the URL to a REST endpoint. | 
| wp-includes/l10n.php: __() | Retrieve the translation of $text. | 
| wp-includes/formatting.php: wp_slash() | Add slashes to a string or array of strings, in a recursive manner. | 
| wp-includes/pluggable.php: get_user_by() | Retrieve user info by a given field | 
| wp-includes/load.php: is_multisite() | If Multisite is enabled. | 
| wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. | 
| wp-includes/user.php: wp_update_user() | Update a user in the database. | 
| wp-includes/user.php: wp_insert_user() | Insert a user into the database. | 
| wp-includes/ms-functions.php: wpmu_create_user() | Create a user. | 
| wp-includes/ms-functions.php: wpmu_validate_user_signup() | Sanitize and validate data required for a user sign-up. | 
| wp-includes/ms-functions.php: add_user_to_blog() | Adds a user to a blog, along with specifying the user’s role. | 
| wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. | 
| wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |