[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/rest-api/endpoints/ -> class-wp-rest-sidebars-controller.php (summary)

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: 509 lines (16 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

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.


register_routes()   X-Ref
Registers the controllers routes.


get_items_permissions_check( $request )   X-Ref
Checks if a given request has access to get sidebars.

param: WP_REST_Request $request Full details about the request.
return: true|WP_Error True if the request has read access, WP_Error object otherwise.

get_items( $request )   X-Ref
Retrieves the list of sidebars (active or inactive).

param: WP_REST_Request $request Full details about the request.
return: WP_REST_Response Response object on success.

get_item_permissions_check( $request )   X-Ref
Checks if a given request has access to get a single sidebar.

param: WP_REST_Request $request Full details about the request.
return: true|WP_Error True if the request has read access, WP_Error object otherwise.

check_read_permission( $sidebar )   X-Ref
Checks if a sidebar can be read publicly.

param: array $sidebar The registered sidebar configuration.
return: bool Whether the side can be read.

get_item( $request )   X-Ref
Retrieves one sidebar from the collection.

param: WP_REST_Request $request Full details about the request.
return: WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure.

update_item_permissions_check( $request )   X-Ref
Checks if a given request has access to update sidebars.

param: WP_REST_Request $request Full details about the request.
return: true|WP_Error True if the request has read access, WP_Error object otherwise.

update_item( $request )   X-Ref
Updates a sidebar.

param: WP_REST_Request $request Full details about the request.
return: WP_REST_Response Response object on success, or WP_Error object on failure.

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.

get_sidebar( $id )   X-Ref
Retrieves the registered sidebar with the given id.

param: string|int $id ID of the sidebar.
return: array|null The discovered sidebar, or null if it is not registered.

retrieve_widgets()   X-Ref
Looks for "lost" widgets once per request.


prepare_item_for_response( $item, $request )   X-Ref
Prepares a single sidebar output for response.

param: array           $item    Sidebar instance.
param: WP_REST_Request $request Full details about the request.
return: WP_REST_Response Prepared response object.

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.



Generated : Fri Apr 19 08:20:01 2024 Cross-referenced by PHPXref