Exemple #1
0
 public function __construct()
 {
     parent::__construct();
     $options = FFLCommerce_Base::get_options();
     $this->id = 'fflcommerce_worldpay';
     $this->icon = fflcommerce::assets_url() . '/assets/images/icons/worldpay.png';
     $this->has_fields = false;
     $this->enabled = $options->get('fflcommerce_worldpay_is_enabled');
     $this->title = $options->get('fflcommerce_worldpay_method_title');
     $this->description = $options->get('fflcommerce_worldpay_checkout_description');
     $this->testmode = $options->get('fflcommerce_worldpay_test_mode');
     $this->installation_id = $options->get('fflcommerce_worldpay_install_id');
     $this->fixed_currency = $options->get('fflcommerce_worldpay_fixed_currency');
     $this->md5_encrypt = $options->get('fflcommerce_worldpay_md5');
     $this->secret_word = $options->get('fflcommerce_worldpay_md5_secret_word');
     $this->response_pass = $options->get('fflcommerce_worldpay_response_password');
     $this->receive_err_log = $options->get('fflcommerce_worldpay_receive_security_logs');
     $this->emailto_err_log = $options->get('fflcommerce_worldpay_security_logs_emailto');
     $this->currency = $options->get('fflcommerce_currency');
     $this->notify_url = fflcommerce_request_api::query_request('?js-api=JS_Gateway_WorldPay', false);
     add_action('fflcommerce_api_js_gateway_worldpay', array($this, 'check_worldpay_response'));
     add_action('admin_notices', array($this, 'worldpay_notices'));
     add_action('receipt_fflcommerce_worldpay', array($this, 'receipt_page'));
     add_action('wp_footer', array($this, 'worldpay_script'));
 }
Exemple #2
0
 public function __construct()
 {
     parent::__construct();
     $options = FFLCommerce_Base::get_options();
     $this->id = 'paypal';
     $this->icon = FFLCOMMERCE_URL . '/assets/images/icons/paypal.png';
     $this->has_fields = false;
     $this->enabled = $options->get('fflcommerce_paypal_enabled');
     $this->title = $options->get('fflcommerce_paypal_title');
     $this->email = $options->get('fflcommerce_paypal_email');
     $this->description = $options->get('fflcommerce_paypal_description');
     $this->force_payment = $options->get('fflcommerce_paypal_force_payment');
     $this->testmode = $options->get('fflcommerce_paypal_testmode');
     $this->testemail = $options->get('fflcommerce_sandbox_email');
     $this->send_shipping = $options->get('fflcommerce_paypal_send_shipping');
     $this->decimals = min($options->get('fflcommerce_price_num_decimals'), in_array($options->get('fflcommerce_currency'), self::$no_decimal_currencies) ? 0 : 2);
     $this->liveurl = 'https://www.paypal.com/webscr';
     $this->testurl = 'https://www.sandbox.paypal.com/webscr';
     $this->notify_url = fflcommerce_request_api::query_request('?js-api=JS_Gateway_Paypal', false);
     add_action('fflcommerce_settings_scripts', array($this, 'admin_scripts'));
     add_action('receipt_paypal', array($this, 'receipt_page'));
     add_action('fflcommerce_api_js_gateway_paypal', array($this, 'check_ipn_response'));
     add_action('init', array($this, 'legacy_ipn_response'));
 }