blob: 503aadfd029c85c2b025e4bc2bb2db4eb450531f [file] [log] [blame]
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* The iDEAL Payment Method class extending UPE base class
*/
class WC_Stripe_UPE_Payment_Method_Ideal extends WC_Stripe_UPE_Payment_Method {
const STRIPE_ID = 'ideal';
const LPM_GATEWAY_CLASS = WC_Gateway_Stripe_Ideal::class;
/**
* Constructor for iDEAL payment method
*/
public function __construct() {
parent::__construct();
$this->stripe_id = self::STRIPE_ID;
$this->title = __( 'Pay with iDEAL', 'woocommerce-gateway-stripe' );
$this->is_reusable = true;
$this->supported_currencies = [ 'EUR' ];
$this->label = __( 'iDEAL', 'woocommerce-gateway-stripe' );
$this->description = __(
'iDEAL is a Netherlands-based payment method that allows customers to complete transactions online using their bank credentials.',
'woocommerce-gateway-stripe'
);
}
}