コード例 #1
0
 /**
  * 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;
 }
コード例 #2
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;
 }
コード例 #3
0
 /**
  * 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;
 }
コード例 #4
0
 /**
  * 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;
 }
コード例 #5
0
 /**
  * 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;
 }
 /**
  * Process donation.
  *
  * @since   1.0.2
  */
 public static function process_donation($donation_id, $processor, $gateway = null)
 {
     parent::process_donation($donation_id, $processor, get_class());
 }