Automattic\WooCommerce\Admin\API

ProductsLowInStock::register_routes()publicWC 1.0

Register routes.

Метод класса: ProductsLowInStock{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ProductsLowInStock = new ProductsLowInStock();
$ProductsLowInStock->register_routes();

Код ProductsLowInStock::register_routes() WC 8.7.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' ),
		)
	);
	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' ),
		)
	);
}