/** * Constructor * * @access public * @return void */ function __construct() { parent::__construct(); $this->title = lang('payment_bank_wire_title'); $this->method_title = lang('payment_bank_wire_method_title'); $this->status = isset($this->config['MODULE_PAYMENT_BANK_WIRE_STATUS']) && $this->config['MODULE_PAYMENT_BANK_WIRE_STATUS'] == 'True' ? TRUE : FALSE; $this->sort_order = isset($this->config['MODULE_PAYMENT_BANK_WIRE_SORT_ORDER']) ? $this->config['MODULE_PAYMENT_BANK_WIRE_SORT_ORDER'] : null; }
/** * Constructor * * @access public * @return void */ function __construct() { parent::__construct(); $this->title = lang('payment_paypal_standard_title'); $this->method_title = lang('payment_paypal_standard_method_title'); $this->status = isset($this->config['MODULE_PAYMENT_PAYPAL_STANDARD_STATUS']) && $this->config['MODULE_PAYMENT_PAYPAL_STANDARD_STATUS'] == 'True' ? TRUE : FALSE; $this->sort_order = isset($this->config['MODULE_PAYMENT_PAYPAL_STANDARD_SORT_ORDER']) ? $this->config['MODULE_PAYMENT_PAYPAL_STANDARD_SORT_ORDER'] : NULL; }
/** * Constructor * * @access public * @return void */ function __construct() { parent::__construct(); $this->title = lang('payment_western_union_title'); $this->method_title = lang('payment_western_union_method_title'); $this->status = isset($this->config['MODULE_PAYMENT_WESTERN_UNION_STATUS']) && $this->config['MODULE_PAYMENT_WESTERN_UNION_STATUS'] == 'True' ? TRUE : FALSE; $this->sort_order = isset($this->config['MODULE_PAYMENT_WESTERN_UNION_SORT_ORDER']) ? $this->config['MODULE_PAYMENT_WESTERN_UNION_SORT_ORDER'] : null; }
/** * Constructor * * @access public * @return void */ function __construct() { parent::__construct(); $this->title = lang('payment_paypal_direct_title'); $this->method_title = lang('payment_paypal_direct_method_title'); $this->status = isset($this->config['MODULE_PAYMENT_PAYPAL_DIRECT_STATUS']) && $this->config['MODULE_PAYMENT_PAYPAL_DIRECT_STATUS'] == 'True' ? TRUE : FALSE; $this->sort_order = isset($this->config['MODULE_PAYMENT_PAYPAL_DIRECT_SORT_ORDER']) ? $this->config['MODULE_PAYMENT_PAYPAL_DIRECT_SORT_ORDER'] : NULL; $this->cc_types = array('VISA' => 'Visa', 'MASTERCARD' => 'MasterCard', 'DISCOVER' => 'Discover Card', 'AMEX' => 'American Express', 'SWITCH' => 'Maestro', 'SOLO' => 'Solo'); }