Class Index [+]

Quicksearch

ActiveMerchant::Billing::Integrations::EPaymentPlans

Public Class Methods

notification(post, options = {}) click to toggle source
    # File lib/active_merchant/billing/integrations/e_payment_plans.rb, line 38
38:         def self.notification(post, options = {})
39:           Notification.new(post, options)
40:         end
notification_confirmation_url() click to toggle source
    # File lib/active_merchant/billing/integrations/e_payment_plans.rb, line 26
26:         def self.notification_confirmation_url
27:           mode = ActiveMerchant::Billing::Base.integration_mode
28:           case mode
29:           when :production
30:             "#{production_url}/order/confirmation"
31:           when :test
32:             "#{test_url}/order/confirmation"
33:           else
34:             raise StandardError, "Integration mode set to an invalid value: #{mode}"
35:           end
36:         end
return(query_string, options = {}) click to toggle source
    # File lib/active_merchant/billing/integrations/e_payment_plans.rb, line 42
42:         def self.return(query_string, options = {})
43:           Return.new(query_string, options)
44:         end
service_url() click to toggle source
    # File lib/active_merchant/billing/integrations/e_payment_plans.rb, line 14
14:         def self.service_url
15:           mode = ActiveMerchant::Billing::Base.integration_mode
16:           case mode
17:           when :production
18:             "#{production_url}/order/purchase"
19:           when :test
20:             "#{test_url}/order/purchase"
21:           else
22:             raise StandardError, "Integration mode set to an invalid value: #{mode}"
23:           end
24:         end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.