/**
  * Constructs and initialize iDEAL gateway.
  */
 public function __construct()
 {
     parent::__construct();
     // Set the name of this gateway.
     // @see https://gitlab.com/pronamic/memberpress/blob/1.2.4/app/lib/MeprBaseGateway.php#L12-13
     $this->name = __('Bank Transfer', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::BANK_TRANSFER;
 }
 /**
  * Constructs and initialize credit card gateway
  */
 public function __construct()
 {
     parent::__construct();
     // Set the name of this gateway.
     // @see https://gitlab.com/pronamic/memberpress/blob/1.2.4/app/lib/MeprBaseGateway.php#L12-13
     $this->name = __('Credit Card', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::CREDIT_CARD;
 }
 /**
  * Constructs and initialize direct debit gateway
  */
 public function __construct()
 {
     parent::__construct();
     // Set the name of this gateway.
     // @see https://gitlab.com/pronamic/memberpress/blob/1.2.4/app/lib/MeprBaseGateway.php#L12-13
     $this->name = __('Direct Debit', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::DIRECT_DEBIT;
 }
 /**
  * Constructs and initialize iDEAL gateway.
  */
 public function __construct()
 {
     parent::__construct();
     // Set the name of this gateway.
     // @see https://gitlab.com/pronamic/memberpress/blob/1.2.4/app/lib/MeprBaseGateway.php#L12-13
     $this->name = __('Bancontact/Mister Cash', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::MISTER_CASH;
 }