Automattic\WooCommerce\Admin\API
ProductsLowInStock::register_routes()
Register routes.
Method of the class: ProductsLowInStock{}
No Hooks.
Return
null
. Nothing.
Usage
$ProductsLowInStock = new ProductsLowInStock(); $ProductsLowInStock->register_routes();
ProductsLowInStock::register_routes() ProductsLowInStock::register routes code WC 7.3.0
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' ), ) ); }