W3cubDocs

/WordPress

WP_REST_Block_Directory_Controller::get_items_permissions_check( WP_REST_Request $request )

Checks whether a given request has permission to install and activate plugins.

Parameters

$request

(WP_REST_Request) (Required) Full details about the request.

Return

(WP_Error|bool) True if the request has permission, WP_Error object otherwise.

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php

public function get_items_permissions_check( $request ) {
		if ( ! current_user_can( 'install_plugins' ) || ! current_user_can( 'activate_plugins' ) ) {
			return new WP_Error(
				'rest_block_directory_cannot_view',
				__( 'Sorry, you are not allowed to browse the block directory.' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

Changelog

Version Description
5.5.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_block_directory_controller/get_items_permissions_check