| <?php |
| if ( ! defined( 'ABSPATH' ) ) { |
| exit; |
| } |
| |
| /** |
| * Bancontact Payment Method class extending UPE base class |
| */ |
| class WC_Stripe_UPE_Payment_Method_Bancontact extends WC_Stripe_UPE_Payment_Method { |
| |
| const STRIPE_ID = 'bancontact'; |
| |
| const LPM_GATEWAY_CLASS = WC_Gateway_Stripe_Bancontact::class; |
| |
| /** |
| * Constructor for Bancontact payment method |
| */ |
| public function __construct() { |
| parent::__construct(); |
| $this->stripe_id = self::STRIPE_ID; |
| $this->title = 'Pay with Bancontact'; |
| $this->is_reusable = true; |
| $this->supported_currencies = [ 'EUR' ]; |
| $this->label = __( 'Bancontact', 'woocommerce-gateway-stripe' ); |
| $this->description = __( |
| 'Bancontact is the most popular online payment method in Belgium, with over 15 million cards in circulation.', |
| 'woocommerce-gateway-stripe' |
| ); |
| } |
| } |