Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders
AmazonPay::is_in_test_mode
Try to determine if the payment gateway is in test mode.
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: AmazonPay{}
No Hooks.
Returns
true|false
. True if the payment gateway is in test mode, false otherwise.
Usage
$AmazonPay = new AmazonPay(); $AmazonPay->is_in_test_mode( $payment_gateway ): bool;
- $payment_gateway(WC_Payment_Gateway) (required)
- The payment gateway object.
AmazonPay::is_in_test_mode() AmazonPay::is in test mode code WC 9.9.3
public function is_in_test_mode( WC_Payment_Gateway $payment_gateway ): bool { $is_in_sandbox_mode = $this->is_amazon_pay_in_sandbox_mode(); if ( ! is_null( $is_in_sandbox_mode ) ) { return $is_in_sandbox_mode; } return parent::is_in_test_mode( $payment_gateway ); }