Validates if the current user can request this REST endpoint.
Parameters
$check
stringrequired- The endpoint check being ran.
Source
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 );
}
Hooks
- apply_filters( “site_health_test_rest_capability_{$check}”,
string $default_capability ,string $check ) Filters the capability needed to run a given Site Health check.
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.