[ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
REST API: WP_REST_Sidebars_Controller class Original code from {@link https://github.com/martin-pettersson/wp-rest-api-sidebars Martin Pettersson (martin_pettersson@outlook.com)}.
File Size: | 500 lines (16 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_REST_Sidebars_Controller:: (15 methods):
__construct()
register_routes()
get_items_permissions_check()
get_items()
get_item_permissions_check()
check_read_permission()
get_item()
update_item_permissions_check()
update_item()
do_permissions_check()
get_sidebar()
retrieve_widgets()
prepare_item_for_response()
prepare_links()
get_item_schema()
Class: WP_REST_Sidebars_Controller - X-Ref
Core class used to manage a site's sidebars.__construct() X-Ref |
Sidebars controller constructor. since: 5.8.0 |
register_routes() X-Ref |
Registers the controllers routes. since: 5.8.0 |
get_items_permissions_check( $request ) X-Ref |
Checks if a given request has access to get sidebars. return: true|WP_Error True if the request has read access, WP_Error object otherwise. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
get_items( $request ) X-Ref |
Retrieves the list of sidebars (active or inactive). return: WP_REST_Response Response object on success. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
get_item_permissions_check( $request ) X-Ref |
Checks if a given request has access to get a single sidebar. return: true|WP_Error True if the request has read access, WP_Error object otherwise. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
check_read_permission( $sidebar ) X-Ref |
Checks if a sidebar can be read publicly. return: bool Whether the side can be read. param: array $sidebar The registered sidebar configuration. since: 5.9.0 |
get_item( $request ) X-Ref |
Retrieves one sidebar from the collection. return: WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
update_item_permissions_check( $request ) X-Ref |
Checks if a given request has access to update sidebars. return: true|WP_Error True if the request has read access, WP_Error object otherwise. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
update_item( $request ) X-Ref |
Updates a sidebar. return: WP_REST_Response Response object on success, or WP_Error object on failure. param: WP_REST_Request $request Full details about the request. since: 5.8.0 |
do_permissions_check() X-Ref |
Checks if the user has permissions to make the request. return: true|WP_Error True if the request has read access, WP_Error object otherwise. since: 5.8.0 |
get_sidebar( $id ) X-Ref |
Retrieves the registered sidebar with the given id. return: array|null The discovered sidebar, or null if it is not registered. param: string|int $id ID of the sidebar. since: 5.8.0 |
retrieve_widgets() X-Ref |
Looks for "lost" widgets once per request. since: 5.9.0 |
prepare_item_for_response( $item, $request ) X-Ref |
Prepares a single sidebar output for response. return: WP_REST_Response Prepared response object. param: array $item Sidebar instance. param: WP_REST_Request $request Full details about the request. since: 5.8.0 since: 5.9.0 Renamed `$raw_sidebar` to `$item` to match parent class for PHP 8 named parameter support. |
prepare_links( $sidebar ) X-Ref |
No description |
get_item_schema() X-Ref |
Retrieves the block type' schema, conforming to JSON Schema. return: array Item schema data. since: 5.8.0 |
Generated: Thu Nov 21 01:00:03 2024 | Cross-referenced by PHPXref 0.7.1 |