WP_REST_Sidebars_Controller::register_routes() – Registers the controllers routes.

You appear to be a bot. Output may be restricted

Description

Registers the controllers routes.

Usage

WP_REST_Sidebars_Controller::register_routes();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php
Lines:

1 to 43 of 43
  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'                => array(
            'context' => $this->get_context_param( array( 'default' => 'view' ) ),
          ),
        ),
        '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(
            'id'      => array(
              'description' => __( 'The id of a registered sidebar' ),
              'type'        => 'string',
            ),
            '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 ),
        ),
        'schema' => array( $this, 'get_public_item_schema' ),
      )
    );
  }
 

 View on GitHub View on Trac