Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

WooPayments::is_in_dev_mode()publicWC 1.0

Try to determine if the payment gateway is in dev 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.

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

Хуков нет.

Возвращает

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

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

$WooPayments = new WooPayments();
$WooPayments->is_in_dev_mode( $payment_gateway ): bool;
$payment_gateway(WC_Payment_Gateway) (обязательный)
The payment gateway object.

Код WooPayments::is_in_dev_mode() WC 9.6.1

public function is_in_dev_mode( 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_dev' ) ) ) {
			return $woopayments_mode->is_dev();
		}
	}

	return parent::is_in_dev_mode( $payment_gateway );
}