/**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('Credit Card', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::CREDIT_CARD;
     parent::__construct();
 }
Esempio n. 2
0
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('MiniTix', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::MINITIX;
     parent::__construct();
 }
Esempio n. 3
0
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('SOFORT Banking', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::SOFORT;
     parent::__construct();
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('Bancontact/Mister Cash', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::MISTER_CASH;
     parent::__construct();
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('Direct Debit', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::DIRECT_DEBIT;
     parent::__construct();
 }
 /**
  * Constructs and initialize an bank transfer gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('Bank Transfer', 'pronamic_ideal');
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::BANK_TRANSFER;
     // @see https://github.com/woothemes/woocommerce/blob/v1.6.6/classes/gateways/class-wc-payment-gateway.php#L24
     $this->has_fields = false;
     parent::__construct();
 }
Esempio n. 7
0
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('iDEAL', 'pronamic_ideal');
     // @since 1.1.2
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::IDEAL;
     // The iDEAL payment gateway has an issuer select field in case of the iDEAL advanced variant
     // @see https://github.com/woothemes/woocommerce/blob/v1.6.6/classes/gateways/class-wc-payment-gateway.php#L24
     $this->has_fields = true;
     parent::__construct();
 }
Esempio n. 8
0
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     $this->id = self::ID;
     $this->method_title = __('Pronamic', 'pronamic_ideal');
     parent::__construct();
 }