Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders\WooPayments
WooPaymentsService::is_onboarding_step_failed
Check if an onboarding step has a failed status.
Method of the class: WooPaymentsService{}
No Hooks.
Returns
true|false. Whether the onboarding step is failed.
Usage
// private - for code of main (parent) class only $result = $this->is_onboarding_step_failed( $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_failed() WooPaymentsService::is onboarding step failed code WC 10.7.0
private function is_onboarding_step_failed( string $step_id, string $location ): bool {
$statuses = (array) $this->get_nox_profile_onboarding_step_entry( $step_id, $location, 'statuses' );
return ! empty( $statuses[ self::ONBOARDING_STEP_STATUS_FAILED ] );
}