rest_validate_boolean_value_from_schema( mixed $value, string $param ): true|WP_Error

Validates a boolean value based on a schema.


Parameters

$value mixed Required
The value to validate.
$param string Required
The parameter name, used in error messages.

Top ↑

Return

true|WP_Error


Top ↑

Source

File: wp-includes/rest-api.php. View all references

function rest_validate_boolean_value_from_schema( $value, $param ) {
	if ( ! rest_is_boolean( $value ) ) {
		return new WP_Error(
			'rest_invalid_type',
			/* translators: 1: Parameter, 2: Type name. */
			sprintf( __( '%1$s is not of type %2$s.' ), $param, 'boolean' ),
			array( 'param' => $param )
		);
	}

	return true;
}


Top ↑

Changelog

Changelog
Version Description
5.7.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.