예제 #1
0
 function __construct($purchase_id = null, $is_receiving = false)
 {
     $this->name = __('Test Gateway', 'wpsc');
     parent::__construct($purchase_id, $is_receiving);
     add_filter('wpsc_purchase_log_customer_notification_raw_message', array($this, '_filter_customer_notification_raw_message'), 10, 2);
     add_filter('wpsc_purchase_log_customer_html_notification_raw_message', array($this, '_filter_customer_notification_raw_message'), 10, 2);
 }
 function __construct($purchase_id = null, $is_receiving = false)
 {
     $this->name = __('PayPal Pro 2.0', 'wpsc');
     parent::__construct($purchase_id, $is_receiving);
 }
 /**
  * Construct and initialize an Pronamic iDEAL merchant class
  */
 public function __construct($purchase_id = null, $is_receiving = false)
 {
     parent::__construct($purchase_id, $is_receiving);
     $this->name = __('Pronamic iDEAL', 'pronamic_ideal');
 }
 function __construct($purchase_id = null, $is_receiving = false)
 {
     $this->name = __('PayPal Payments Standard', 'wp-e-commerce');
     parent::__construct($purchase_id, $is_receiving);
 }
예제 #5
0
 function __construct($purchase_id = null, $is_receiving = false)
 {
     $this->name = __('Test Gateway', 'wpsc');
     parent::__construct($purchase_id, $is_receiving);
 }
예제 #6
0
 /**
  * Construct
  */
 function __construct($purchase_id = NULL, $is_receiving = false, $prefs = NULL, $mycred = NULL, $type = 'mycred_default')
 {
     parent::__construct($purchase_id, $is_receiving);
     $this->prefs = $prefs;
     $this->core = $mycred;
     $this->mycred_type = $type;
 }
예제 #7
0
 public function __construct($purchase_id = null, $is_receiving = false)
 {
     if (get_option('permalink_structure') != '') {
         $this->separator = "?";
     } else {
         $this->separator = "&";
     }
     $this->sagepay_options = get_option('wpec_sagepay');
     $this->sagepay_options['seperator'] = $this->separator;
     wpsc_merchant::__construct($purchase_id, $is_receiving);
 }
 function __construct($purchase_id = null, $is_receiving = false)
 {
     $this->name = 'oklink';
     parent::__construct($purchase_id, $is_receiving);
 }
예제 #9
0
 public function __construct($purchase_id = null, $is_receiving = false)
 {
     wpsc_merchant::__construct($purchase_id, $is_receiving);
     $this->options = get_option('wpec_pxfusion');
 }