Automattic\WooCommerce\Admin\API
ProductsLowInStock::register_routes
Register routes.
Method of the class: ProductsLowInStock{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ProductsLowInStock = new ProductsLowInStock(); $ProductsLowInStock->register_routes();
ProductsLowInStock::register_routes() ProductsLowInStock::register routes code WC 10.6.2
public function register_routes() {
register_rest_route(
$this->namespace,
'products/low-in-stock',
array(
'args' => 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,
'products/count-low-in-stock',
array(
'args' => array(),
array(
'methods' => \WP_REST_Server::READABLE,
'callback' => array( $this, 'get_low_in_stock_count' ),
'permission_callback' => array( $this, 'get_items_permissions_check' ),
'args' => $this->get_low_in_stock_count_params(),
),
'schema' => array( $this, 'get_low_in_stock_count_schema' ),
)
);
}