Automattic\WooCommerce\Internal\Admin\Settings\PaymentsProviders
KlarnaCheckout{}└─ PaymentGateway
KlarnaCheckout payment gateway provider class.
This class handles all the custom logic for the KlarnaCheckout payment gateway provider.
No Hooks.
Usage
$KlarnaCheckout = new KlarnaCheckout(); // use class methods
Methods
- public is_account_connected( WC_Payment_Gateway $payment_gateway )
- public is_in_test_mode_onboarding( WC_Payment_Gateway $payment_gateway )
- public needs_setup( WC_Payment_Gateway $payment_gateway )
KlarnaCheckout{} KlarnaCheckout{} code WC 10.8.1
class KlarnaCheckout extends PaymentGateway {
/**
* Check if the payment gateway needs setup.
*
* @param WC_Payment_Gateway $payment_gateway The payment gateway object.
*
* @return bool True if the payment gateway needs setup, false otherwise.
*/
public function needs_setup( WC_Payment_Gateway $payment_gateway ): bool {
return ! empty( get_option( 'kco_credentials_error' ) );
}
/**
* 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 {
// Note: Since the credentials used are tied to the WooCommerce store location country (US and non-US),
// the account can become disconnected if the store location changes.
if ( function_exists( 'KCO_WC' ) ) {
$credentials = \KCO_WC()->credentials;
if ( is_object( $credentials ) && is_callable( array( $credentials, 'get_credentials_from_session' ) ) ) {
return ! empty( $credentials->get_credentials_from_session() );
}
}
} 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 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.
*
* @param WC_Payment_Gateway $payment_gateway The payment gateway object.
*
* @return bool True if the payment gateway is in test mode onboarding, false otherwise.
*/
public function is_in_test_mode_onboarding( WC_Payment_Gateway $payment_gateway ): bool {
// Test mode is actually sandbox mode for KlarnaCheckout, affecting the API details used.
return $this->is_in_test_mode( $payment_gateway );
}
}