Class: OffsitePayments::Integrations::Webmoney::Helper

Inherits:
Helper
  • Object
show all
Includes:
Common
Defined in:
lib/offsite_payments/integrations/webmoney.rb

Instance Attribute Summary

Attributes inherited from Helper

#fields

Instance Method Summary collapse

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?

Methods included from MoneyCompatibility

#to_cents

Constructor Details

#initialize(order, account, options = {}) ⇒ Helper

Returns a new instance of Helper.



48
49
50
51
52
53
54
55
56
57
58
# File 'lib/offsite_payments/integrations/webmoney.rb', line 48

def initialize(order, , options = {})
  @webmoney_options = options.dup
  options.delete(:description)
  options.delete(:fail_url)
  options.delete(:success_url)
  options.delete(:result_url)
  super
  @webmoney_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_fieldsObject



60
61
62
# File 'lib/offsite_payments/integrations/webmoney.rb', line 60

def form_fields
  @fields
end

#paramsObject



64
65
66
# File 'lib/offsite_payments/integrations/webmoney.rb', line 64

def params
  @fields
end