Class: OffsitePayments::Integrations::Paxum::Helper
- Includes:
- Common
- Defined in:
- lib/offsite_payments/integrations/paxum.rb
Instance Attribute Summary
Attributes inherited from Helper
Instance Method Summary collapse
- #form_fields ⇒ Object
-
#initialize(order, account, options = {}) ⇒ Helper
constructor
A new instance of Helper.
- #params ⇒ Object
Methods included from Common
#generate_signature, #generate_signature_string
Methods inherited from Helper
#add_field, #add_fields, #add_raw_html_field, #billing_address, #form_method, inherited, mapping, #raw_html_fields, #shipping_address, #test?
Constructor Details
#initialize(order, account, options = {}) ⇒ Helper
Returns a new instance of Helper.
55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/offsite_payments/integrations/paxum.rb', line 55 def initialize(order, account, = {}) @paxum_options = .dup .delete(:description) .delete(:fail_url) .delete(:success_url) .delete(:result_url) super add_field "button_type_id", "1" add_field "variables", "notify_url=#{@paxum_options[:result_url]}" @paxum_options.each do |key, value| add_field mappings[key], value end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class OffsitePayments::Helper
Instance Method Details
#form_fields ⇒ Object
69 70 71 |
# File 'lib/offsite_payments/integrations/paxum.rb', line 69 def form_fields @fields end |
#params ⇒ Object
73 74 75 |
# File 'lib/offsite_payments/integrations/paxum.rb', line 73 def params @fields end |