/**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Credit Card', 'pronamic_ideal');
     $this->defaults = array('label' => __('Credit Card', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::CREDIT_CARD;
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Bancontact/Mister Cash', 'pronamic_ideal');
     $this->defaults = array('label' => __('Bancontact/Mister Cash', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::MISTER_CASH;
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Bancontact', 'pronamic_ideal');
     $this->defaults = array('label' => __('Bancontact', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::BANCONTACT;
 }
Exemplo n.º 4
0
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('iDEAL', 'pronamic_ideal');
     $this->defaults = array('label' => __('iDEAL', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::IDEAL;
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Bank Transfer', 'pronamic_ideal');
     $this->defaults = array('label' => __('Bank Transfer', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::BANK_TRANSFER;
 }
 /**
  * Constructs and initialize an iDEAL gateway
  */
 public function __construct()
 {
     parent::__construct();
     $this->name = __('Direct Debit', 'pronamic_ideal');
     $this->defaults = array('label' => __('Direct Debit', 'pronamic_ideal'));
     $this->payment_method = Pronamic_WP_Pay_PaymentMethods::DIRECT_DEBIT;
 }