/**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Chase_Orbital
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_Chase_Orbital.gateway.php';
     $this->_gateway = new EEG_Chase_Orbital();
     $this->_pretty_name = __("Chase Orbital", 'event_espresso');
     parent::__construct($pm_instance);
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Invoice
  */
 public function __construct($pm_instance = NULL)
 {
     $this->_pretty_name = __("Invoice", 'event_espresso');
     $this->_default_description = __('After clicking "Finalize Registration", you will be given instructions on how to access your invoice and complete your payment.', 'event_espresso');
     parent::__construct($pm_instance);
     $this->_default_button_url = $this->file_url() . 'lib' . DS . 'invoice-logo.png';
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Mock_Onsite
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_Mock_Onsite.gateway.php';
     $this->_gateway = new EEG_Mock_Onsite();
     $this->_pretty_name = __("Mock Onsite", 'event_espresso');
     parent::__construct($pm_instance);
 }
 /**
  * Constructs and initializes an Event Espresso payment method
  *
  * @param EE_Payment_Method $pm_instance
  */
 public function __construct($pm_instance = null)
 {
     $this->_gateway = new Pronamic_WP_Pay_Extensions_EventEspresso_Gateway();
     $this->_pretty_name = __('Pronamic', 'pronamic_ideal');
     $this->_default_button_url = plugins_url('images/ideal/ee-4-icon.png', Pronamic_WP_Pay_Plugin::$file);
     parent::__construct($pm_instance);
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Bank
  */
 public function __construct($pm_instance = NULL)
 {
     $this->_pretty_name = __("Bank", 'event_espresso');
     parent::__construct($pm_instance);
     $this->_default_button_url = $this->file_url() . 'lib' . DS . 'bank-logo.png';
     $this->_default_description = __('Make payment using an electronic funds transfer from your bank.', 'event_espresso');
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_New_Payment_Method_Offsite
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_New_Payment_Method_Offsite.gateway.php';
     $this->_gateway = new EEG_New_Payment_Method_Offsite();
     $this->_pretty_name = __("New Payment Method Offsite", 'event_espresso');
     parent::__construct($pm_instance);
 }
 /**
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Paypal_Pro
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_Paypal_Pro.gateway.php';
     $this->_gateway = new EEG_Paypal_Pro();
     $this->_pretty_name = __("Paypal Pro", 'event_espresso');
     $this->_default_description = __('Please provide the following billing information.', 'event_espresso');
     $this->_requires_https = true;
     parent::__construct($pm_instance);
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Mijireh
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_Mijireh.gateway.php';
     $this->_gateway = new EEG_Mijireh();
     $this->_pretty_name = __("Mijireh", 'event_espresso');
     $this->_default_description = __('After clicking "Finalize Registration", you will be able to enter your billing information and complete your payment.', 'event_espresso');
     parent::__construct($pm_instance);
     $this->_default_button_url = $this->file_url() . 'lib' . DS . 'mijireh-checkout-logo.png';
 }
 /**
  * @param null $pm_instance
  * @return \EE_PMT_Paypal_Standard
  * @throws \EE_Error
  */
 public function __construct($pm_instance = NULL)
 {
     require_once $this->file_folder() . 'EEG_Paypal_Standard.gateway.php';
     $this->_gateway = new EEG_Paypal_Standard();
     $this->_pretty_name = __("PayPal Standard", 'event_espresso');
     $this->_default_description = sprintf(__('Upon submitting this form, you will be forwarded to PayPal to make your payment. %1$sMake sure you return to this site in order to properly finalize your registration.%2$s', 'event_espresso'), '<strong>', '</strong>');
     parent::__construct($pm_instance);
     $this->_default_button_url = $this->file_url() . 'lib' . DS . 'paypal-logo.png';
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @throws \EE_Error
  * @return \EE_PMT_Payflow_Pro_Onsite
  */
 public function __construct($pm_instance = NULL)
 {
     $this->_pretty_name = __('Payflow Pro', 'event_espresso');
     $this->_default_description = __('Fill up the form below and then Click the "Finalize Registration" button to proceed with the payment', 'event_espresso');
     $this->_template_path = dirname(__FILE__) . DS . 'templates' . DS;
     $this->_default_button_url = NULL;
     $this->_requires_https = true;
     $this->_cache_billing_form = true;
     require_once $this->file_folder() . 'EEG_Payflow_Pro_Onsite.gateway.php';
     $this->_gateway = new EEG_Payflow_Pro_Onsite();
     parent::__construct($pm_instance);
 }
Пример #11
0
 /**
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Aim
  * @throws \EE_Error
  */
 public function __construct($pm_instance = NULL)
 {
     $this->_setup_properties();
     parent::__construct($pm_instance);
 }
 /**
  *
  * @param EE_Payment_Method $pm_instance
  * @return EE_PMT_Admin_Only
  */
 public function __construct($pm_instance = NULL)
 {
     $this->_pretty_name = __("Admin Only", 'event_espresso');
     $this->_default_button_url = '';
     parent::__construct($pm_instance);
 }