Automattic\WooCommerce\Admin\API
Leaderboards::register_routes()
Register routes.
Method of the class: Leaderboards{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Leaderboards = new Leaderboards(); $Leaderboards->register_routes();
Leaderboards::register_routes() Leaderboards::register routes code WC 9.3.3
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(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/allowed', array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( $this, 'get_allowed_items' ), 'permission_callback' => array( $this, 'get_items_permissions_check' ), ), 'schema' => array( $this, 'get_public_allowed_item_schema' ), ) ); register_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<leaderboard>\w+)', array( 'args' => array( 'leaderboard' => array( 'type' => 'string', 'enum' => array( 'customers', 'coupons', 'categories', 'products' ), ), ), array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( $this, 'get_items' ), 'permission_callback' => array( $this, 'get_items_permissions_check' ), 'args' => $this->get_collection_params(), ), 'schema' => array( $this, 'get_public_item_schema' ), ) ); }