Automattic\WooCommerce\Admin\API

ProductForm::register_routes()publicWC 1.0

Register routes.

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

Хуков нет.

Возвращает

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

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

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

Код ProductForm::register_routes() WC 9.7.1

public function register_routes() {
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base,
		array(
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_form_config' ),
				'permission_callback' => array( $this, 'get_product_form_permission_check' ),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base . '/fields',
		array(
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_fields' ),
				'permission_callback' => array( $this, 'get_product_form_permission_check' ),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);
}