Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders
Razorpay{}└─ PaymentGateway
Razorpay payment gateway provider class.
This class handles all the custom logic for the Razorpay payment gateway provider.
No Hooks.
Usage
$Razorpay = new Razorpay(); // use class methods
Methods
- public is_account_connected( WC_Payment_Gateway $payment_gateway )
- public is_in_test_mode( WC_Payment_Gateway $payment_gateway )
Razorpay{} Razorpay{} code WC 10.7.0
class Razorpay extends PaymentGateway {
/**
* Check if the payment gateway has a payments processor account connected.
*
* @param WC_Payment_Gateway $payment_gateway The payment gateway object.
*
* @return bool True if the payment gateway account is connected, false otherwise.
* If the payment gateway does not provide the information, it will return true.
*/
public function is_account_connected( WC_Payment_Gateway $payment_gateway ): bool {
try {
if ( is_callable( array( $payment_gateway, 'getSetting' ) ) ) {
return ! empty( $payment_gateway->getSetting( 'key_id' ) ) &&
! empty( $payment_gateway->getSetting( 'key_secret' ) );
}
} catch ( Throwable $e ) {
// Do nothing but log so we can investigate.
SafeGlobalFunctionProxy::wc_get_logger()->debug(
'Failed to determine if gateway has an account connected: ' . $e->getMessage(),
array(
'gateway' => $payment_gateway->id,
'source' => 'settings-payments',
'exception' => $e,
)
);
}
return parent::is_account_connected( $payment_gateway );
}
/**
* 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.
*
* @param WC_Payment_Gateway $payment_gateway The payment gateway object.
*
* @return bool True if the payment gateway is in test mode, false otherwise.
*/
public function is_in_test_mode( WC_Payment_Gateway $payment_gateway ): bool {
try {
if ( function_exists( '\isTestModeEnabled' ) ) {
return wc_string_to_bool( \isTestModeEnabled() );
}
} catch ( Throwable $e ) {
// Do nothing but log so we can investigate.
SafeGlobalFunctionProxy::wc_get_logger()->debug(
'Failed to determine if gateway is in test mode: ' . $e->getMessage(),
array(
'gateway' => $payment_gateway->id,
'source' => 'settings-payments',
'exception' => $e,
)
);
}
return parent::is_in_test_mode( $payment_gateway );
}
}