Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders\WooPayments
WooPaymentsService::is_onboarding_step_completed
Check if the onboarding step has a completed status.
Method of the class: WooPaymentsService{}
No Hooks.
Returns
true|false. Whether the onboarding step is completed.
Usage
// private - for code of main (parent) class only $result = $this->is_onboarding_step_completed( $step_id, $location ): bool;
- $step_id(string) (required)
- The ID of the onboarding step.
- $location(string) (required)
- The location for which we are onboarding. This is an ISO 3166-1 alpha-2 country code.
WooPaymentsService::is_onboarding_step_completed() WooPaymentsService::is onboarding step completed code WC 10.7.0
private function is_onboarding_step_completed( string $step_id, string $location ): bool {
return self::ONBOARDING_STEP_STATUS_COMPLETED === $this->get_onboarding_step_status( $step_id, $location );
}