WP_REST_Block_Types_Controller::get_item_permissions_check() public WP 5.5.0
Checks if a given request has access to read a block type.
{} It's a method of the class: WP_REST_Block_Types_Controller{}
No Hooks.
Return
WP_Error/true/false. True if the request has read access for the item, WP_Error object otherwise.
Usage
$WP_REST_Block_Types_Controller = new WP_REST_Block_Types_Controller(); $WP_REST_Block_Types_Controller->get_item_permissions_check( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 5.5.0 | Introduced. |
Code of WP_REST_Block_Types_Controller::get_item_permissions_check() WP REST Block Types Controller::get item permissions check WP 5.6
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;
}