Automattic\WooCommerce\Admin\API

OnboardingProfile::register_routes()publicWC 1.0

Register routes.

Method of the class: OnboardingProfile{}

No Hooks.

Return

null. Nothing (null).

Usage

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

OnboardingProfile::register_routes() code WC 8.7.0

public function register_routes() {
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base,
		array(
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_items' ),
				'permission_callback' => array( $this, 'get_items_permissions_check' ),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base,
		array(
			array(
				'methods'             => \WP_REST_Server::EDITABLE,
				'callback'            => array( $this, 'update_items' ),
				'permission_callback' => array( $this, 'update_items_permissions_check' ),
				'args'                => $this->get_collection_params(),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);

	// This endpoint is experimental. For internal use only.
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base . '/experimental_get_email_prefill',
		array(
			array(
				'methods'             => \WP_REST_Server::READABLE,
				'callback'            => array( $this, 'get_email_prefill' ),
				'permission_callback' => array( $this, 'get_items_permissions_check' ),
			),
			'schema' => array( $this, 'get_public_item_schema' ),
		)
	);
}