WP_REST_Site_Health_Controller::validate_request_permission( string $check ): bool

Validates if the current user can request this REST endpoint.


Parameters

$check string Required
The endpoint check being ran.

Top ↑

Return

bool


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php. View all references

protected function validate_request_permission( $check ) {
	$default_capability = 'view_site_health_checks';

	/**
	 * Filters the capability needed to run a given Site Health check.
	 *
	 * @since 5.6.0
	 *
	 * @param string $default_capability The default capability required for this check.
	 * @param string $check              The Site Health check being performed.
	 */
	$capability = apply_filters( "site_health_test_rest_capability_{$check}", $default_capability, $check );

	return current_user_can( $capability );
}

Top ↑

Hooks



Top ↑

Changelog

Changelog
Version Description
5.6.0 Introduced.

Top ↑

User Contributed Notes

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