You are here

function _2checkout_post_url in Ubercart 6.2

Same name and namespace in other branches
  1. 5 payment/uc_2checkout/uc_2checkout.module \_2checkout_post_url()
1 call to _2checkout_post_url()
uc_2checkout_form in payment/uc_2checkout/uc_2checkout.module
Form to build the submission to 2Checkout.com.

File

payment/uc_2checkout/uc_2checkout.module, line 250
Integrates 2Checkout.com's redirected payment service.

Code

function _2checkout_post_url($type) {
  switch ($type) {
    case 'single':
      return 'https://www.2checkout.com/checkout/spurchase';
    case 'multi':
    default:
      return 'https://www.2checkout.com/2co/buyer/purchase';
  }
}