Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders
Payfast::is_in_test_mode_onboarding
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.
Метод класса: Payfast{}
Хуков нет.
Возвращает
true|false. True if the payment gateway is in test mode onboarding, false otherwise.
Использование
$Payfast = new Payfast(); $Payfast->is_in_test_mode_onboarding( $payment_gateway ): bool;
- $payment_gateway(WC_Payment_Gateway) (обязательный)
- The payment gateway object.
Код Payfast::is_in_test_mode_onboarding() Payfast::is in test mode onboarding WC 10.8.1
public function is_in_test_mode_onboarding( WC_Payment_Gateway $payment_gateway ): bool {
// Test mode is actually sandbox mode for Payfast, affecting the API endpoints used.
return $this->is_in_test_mode( $payment_gateway );
}