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