Automattic\WooCommerce\Admin\API
OnboardingProducts::register_routes()
Register routes.
Метод класса: OnboardingProducts{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$OnboardingProducts = new OnboardingProducts(); $OnboardingProducts->register_routes();
Код OnboardingProducts::register_routes() OnboardingProducts::register routes WC 9.7.1
public function register_routes() { register_rest_route( $this->namespace, '/' . $this->rest_base . '/products', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'callback' => array( $this, 'create_products' ), 'permission_callback' => array( $this, 'update_item_permissions_check' ), ), 'schema' => array( $this, 'get_item_schema' ), ) ); }