WP_REST_Widget_Types_Controller::get_item_permissions_check()publicWP 5.8.0

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

Method of the class: WP_REST_Widget_Types_Controller{}

No Hooks.

Return

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

Usage

$WP_REST_Widget_Types_Controller = new WP_REST_Widget_Types_Controller();
$WP_REST_Widget_Types_Controller->get_item_permissions_check( $request );
$request(WP_REST_Request) (required)
Full details about the request.

Changelog

Since 5.8.0 Introduced.

WP_REST_Widget_Types_Controller::get_item_permissions_check() code WP 6.5.2

public function get_item_permissions_check( $request ) {
	$check = $this->check_read_permission();
	if ( is_wp_error( $check ) ) {
		return $check;
	}
	$widget_id   = $request['id'];
	$widget_type = $this->get_widget( $widget_id );
	if ( is_wp_error( $widget_type ) ) {
		return $widget_type;
	}

	return true;
}