Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

WooPayments::is_in_test_mode_onboardingpublicWC 1.0

Try to determine if the payment gateway is in test mode onboarding (aka sandbox or test-drive).

This is a best-effort attempt, as there is no standard way to determine this. Trust the true value, but don't consider a false value as definitive.

Method of the class: WooPayments{}

No Hooks.

Returns

true|false. True if the payment gateway is in test mode onboarding, false otherwise.

Usage

$WooPayments = new WooPayments();
$WooPayments->is_in_test_mode_onboarding( $payment_gateway ): bool;
$payment_gateway(WC_Payment_Gateway) (required)
The payment gateway object.

WooPayments::is_in_test_mode_onboarding() code WC 9.9.3

public function is_in_test_mode_onboarding( WC_Payment_Gateway $payment_gateway ): bool {
	if ( class_exists( '\WC_Payments' ) &&
		is_callable( '\WC_Payments::mode' ) ) {

		$woopayments_mode = \WC_Payments::mode();
		if ( is_callable( array( $woopayments_mode, 'is_test_mode_onboarding' ) ) ) {
			return $woopayments_mode->is_test_mode_onboarding();
		}
	}

	return parent::is_in_test_mode_onboarding( $payment_gateway );
}