You are here

function _uc_paypal_currency_array in Ubercart 5

Same name and namespace in other branches
  1. 6.2 payment/uc_paypal/uc_paypal.module \_uc_paypal_currency_array()
  2. 7.3 payment/uc_paypal/uc_paypal.module \_uc_paypal_currency_array()
1 call to _uc_paypal_currency_array()
uc_payment_method_paypal_wps in payment/uc_paypal/uc_paypal.module

File

payment/uc_paypal/uc_paypal.module, line 1551
Integrates various PayPal payment services and Instant Payment Notifications (IPN) with Ubercart!

Code

function _uc_paypal_currency_array() {
  return drupal_map_assoc(array(
    'AUD',
    'CAD',
    'CHF',
    'CZK',
    'DKK',
    'EUR',
    'GBP',
    'HKD',
    'HUF',
    'JPY',
    'NOK',
    'NZD',
    'PLN',
    'SEK',
    'SGD',
    'USD',
  ));
}