Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders

PseudoWCPaymentGateway::is_onboarding_startedpublicWC 1.0

Check if the gateway has started onboarding.

Метод класса: PseudoWCPaymentGateway{}

Хуков нет.

Возвращает

bool. True if the gateway has started onboarding, false otherwise.

Использование

$PseudoWCPaymentGateway = new PseudoWCPaymentGateway();
$PseudoWCPaymentGateway->is_onboarding_started(): bool;

Код PseudoWCPaymentGateway::is_onboarding_started() WC 11.1.0

public function is_onboarding_started(): bool {
	return $this->onboarding_started;
}