Uses
| Uses | Description |
|---|---|
| wp-includes/l10n.php: __() | Retrieve the translation of $text. |
| wp-includes/class-wp-error.php: WP_Error::__construct() | Initialize the error. |
Checks for a valid value for the reassign parameter when deleting users.
The value can be an integer, ‘false’, false, or ”.
(int|bool) (Required) The value passed to the reassign parameter.
(WP_REST_Request) (Required) Full details about the request.
(string) (Required) The parameter that is being sanitized.
(int|bool|WP_Error)
File: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php
public function check_reassign( $value, $request, $param ) {
if ( is_numeric( $value ) ) {
return $value;
}
if ( empty( $value ) || false === $value || 'false' === $value ) {
return false;
}
return new WP_Error(
'rest_invalid_param',
__( 'Invalid user parameter(s).' ),
array( 'status' => 400 )
);
} | Version | Description |
|---|---|
| 4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_users_controller/check_reassign