W3cubDocs

/WordPress

WP_REST_Block_Types_Controller::get_item_permissions_check( WP_REST_Request $request )

Checks if a given request has access to read a block type.

Parameters

$request

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

Return

(WP_Error|bool) True if the request has read access for the item, WP_Error object otherwise.

Source

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

public function get_item_permissions_check( $request ) {
		$check = $this->check_read_permission();
		if ( is_wp_error( $check ) ) {
			return $check;
		}
		$block_name = sprintf( '%s/%s', $request['namespace'], $request['name'] );
		$block_type = $this->get_block( $block_name );
		if ( is_wp_error( $block_type ) ) {
			return $block_type;
		}

		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_types_controller/get_item_permissions_check