WP_REST_Widget_Types_Controller::get_item_permissions_check() – Checks if a given request has access to read a widget type.
You appear to be a bot. Output may be restricted
Description
Checks if a given request has access to read a widget type.
Usage
$true|WP_Error = WP_REST_Widget_Types_Controller::get_item_permissions_check( $request );
Parameters
- $request
- ( WP_REST_Request ) required – Full details about the request.
Returns
true|WP_Error True if the request has read access for the item, WP_Error object otherwise.
Source
File name: wordpress/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php
Lines:
1 to 13 of 13
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; }