WP_REST_Font_Collections_Controller::get_items_permissions_check()publicWP 6.5.0

Checks whether the user has permissions to use the Fonts Collections.

Method of the class: WP_REST_Font_Collections_Controller{}

No Hooks.

Return

true|WP_Error. True if the request has write access for the item, WP_Error object otherwise.

Usage

$WP_REST_Font_Collections_Controller = new WP_REST_Font_Collections_Controller();
$WP_REST_Font_Collections_Controller->get_items_permissions_check( $request );
$request (required)
-

Changelog

Since 6.5.0 Introduced.

WP_REST_Font_Collections_Controller::get_items_permissions_check() code WP 6.7.1

public function get_items_permissions_check( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
	if ( current_user_can( 'edit_theme_options' ) ) {
		return true;
	}

	return new WP_Error(
		'rest_cannot_read',
		__( 'Sorry, you are not allowed to access font collections.' ),
		array(
			'status' => rest_authorization_required_code(),
		)
	);
}