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