Automattic\WooCommerce\Admin\API

OnboardingProfile::get_profile_progress()publicWC 1.0

Get the onboarding profile progress.

Method of the class: OnboardingProfile{}

No Hooks.

Return

WP_Error|WP_REST_Response.

Usage

$OnboardingProfile = new OnboardingProfile();
$OnboardingProfile->get_profile_progress( $request );
$request(WP_REST_Request) (required)
Request data.

OnboardingProfile::get_profile_progress() code WC 9.7.1

public function get_profile_progress( $request ) {
	$onboarding_progress = (array) get_option( Profile::PROGRESS_OPTION, array() );
	return rest_ensure_response( $onboarding_progress );
}