Automattic\WooCommerce\Admin\API
Leaderboards::register_routes()
Register routes.
{} Это метод класса: Leaderboards{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$Leaderboards = new Leaderboards(); $Leaderboards->register_routes();
Код Leaderboards::register_routes() Leaderboards::register routes WC 6.6.1
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' ), ) ); }