WP_REST_Widgets_Controller
- Since
- 5.8.0
- Source
wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php:17
Core class to access widgets via the REST API.
Compatibility
- WordPress
- since 5.8.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Hooks and filters fired · 5
Every hook that fires from inside WP_REST_Widgets_Controller, in the order it appears in the class, grouped by the method that fires it.
WP_REST_Widgets_Controller::delete_item()
- do_action( delete_widget )action line 418
- do_action( rest_delete_widget )action line 473
Properties · 2
$widgets_retrievedboolprotected- Tracks whether retrieve_widgets() has been called in the current request.
$allow_batcharrayprotected- Whether the controller supports batching.
Methods · 20
- __construct()Widgets controller constructor.
- register_routes()Registers the widget routes for the controller.
- get_items_permissions_check()Checks if a given request has access to get widgets.
- get_items()Retrieves a collection of widgets.
- get_item_permissions_check()Checks if a given request has access to get a widget.
- check_read_sidebar_permission()Checks if a sidebar can be read publicly.
- get_item()Gets an individual widget.
- create_item_permissions_check()Checks if a given request has access to create widgets.
- create_item()Creates a widget.
- update_item_permissions_check()Checks if a given request has access to update widgets.
- update_item()Updates an existing widget.
- delete_item_permissions_check()Checks if a given request has access to delete widgets.
- delete_item()Deletes a widget.
- permissions_check()Performs a permissions check for managing widgets.
- retrieve_widgets()Looks for "lost" widgets once per request.
- save_widget()Saves the widget in the request object.
- prepare_item_for_response()Prepares the widget for the REST response.
- prepare_links()Prepares links for the widget.
- get_collection_params()Gets the list of collection params.
- get_item_schema()Retrieves the widget's schema, conforming to JSON Schema.
Source code
class WP_REST_Widgets_Controller extends WP_REST_Controller { /** * Tracks whether {@see retrieve_widgets()} has been called in the current request. * * @since 5.9.0 * @var bool */ protected $widgets_retrieved = false; /** * Whether the controller supports batching. * * @since 5.9.0 * @var array */ protected $allow_batch = array( 'v1' => true ); /** * Widgets controller constructor. * * @since 5.8.0 */ public function __construct() { $this->namespace = 'wp/v2'; $this->rest_base = 'widgets'; } /** * Registers the widget routes for the controller. * * @since 5.8.0 */ public function register_routes() { register_rest_route( $this->namespace, $this->rest_base, array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_items' ), 'permission_callback' => array( $this, 'get_items_permissions_check' ), 'args' => $this->get_collection_params(), ), array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( $this, 'create_item' ), 'permission_callback' => array( $this, 'create_item_permissions_check' ), 'args' => $this->get_endpoint_args_for_item_schema(), ), 'allow_batch' => $this->allow_batch, 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, $this->rest_base . '/(?P<id>[\w\-]+)', array( array( 'methods' => WP_REST_Server::READABLE, 'callback' => array( $this, 'get_item' ), 'permission_callback' => array( $this, 'get_item_permissions_check' ), 'args' => array( 'context' => $this->get_context_param( array( 'default' => 'view' ) ), ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'update_item' ), 'permission_callback' => array( $this, 'update_item_permissions_check' ), 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ), ), array( 'methods' => WP_REST_Server::DELETABLE, 'callback' => array( $this, 'delete_item' ), 'permission_callback' => array( $this, 'delete_item_permissions_check' ), 'args' => array( 'force' => array( 'description' => __( 'Whether to force removal of the widget, or move it to the inactive sidebar.' ),Changelog
Introduced in 5.8.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, from
src/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.