You are here

function uc_usps_country_map in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 shipping/uc_usps/uc_usps.countries.inc \uc_usps_country_map()
  2. 6.2 shipping/uc_usps/uc_usps.countries.inc \uc_usps_country_map()

Returns the country name formatted according to the USPS requirements.

USPS uses the ISO 3166 English short names in most cases. This function handles the exceptions.

Parameters

$code: ISO 3166-1 3-digit numerical country code.

Return value

Country name string for use by the USPS International Rate API.

See also

http://pe.usps.gov/text/imm/immctry.htm

1 call to uc_usps_country_map()
uc_usps_intl_rate_request in shipping/uc_usps/uc_usps.module
Constructs a quote request for international shipments.

File

shipping/uc_usps/uc_usps.countries.inc, line 22
Contains the map of ISO country codes to USPS Individual Country Listings.

Code

function uc_usps_country_map($code = NULL) {
  $countries = array(
    248 => 'Aland Island (Finland)',
    334 => 'Australia',
    // Heard Island and McDonald Islands
    68 => 'Bolivia',
    535 => 'Bonaire (Netherlands Antilles)',
    92 => 'British Virgin Islands',
    166 => 'Cocos Island (Australia)',
    180 => 'Congo, Democratic Republic of the',
    178 => 'Congo, Republic of the',
    531 => 'Curacao (Netherlands Antilles)',
    384 => "Cote d'Ivoire",
    626 => 'East Timor (Indonesia)',
    238 => 'Falkland Islands',
    260 => 'France',
    // French Southern Territories
    268 => 'Georgia, Republic of',
    826 => 'Great Britain and Northern Ireland',
    86 => 'Great Britain and Northern Ireland',
    // British Indian Ocean Territory
    239 => 'Great Britain and Northern Ireland',
    // South Georgia and the
    // South Sandwich Islands
    364 => 'Iran',
    275 => 'Israel',
    // Palestinian Territory, Occupied
    833 => 'Isle of Man (Great Britain and Northern Ireland)',
    498 => 'Moldova',
    732 => 'Morocco',
    // Western Sahara
    408 => "Korea, Democratic People's Republic of (North Korea)",
    74 => 'Norway',
    // Bouvet Island
    744 => 'Norway',
    // Svalbard and Jan Mayen
    410 => 'Korea, Republic of (South Korea)',
    418 => 'Laos',
    492 => 'Monaco (France)',
    104 => 'Myanmar (Burma)',
    612 => 'Pitcairn Island',
    638 => 'Reunion',
    643 => 'Russia',
    688 => 'Serbia, Republic of',
    652 => 'Saint Barthelemy (Guadeloupe)',
    654 => 'Saint Helena',
    534 => 'Saint Maarten (Dutch) (Netherlands Antilles)',
    663 => 'Saint Martin (French) (Guadeloupe)',
    703 => 'Slovak Republic',
    158 => 'Taiwan',
    834 => 'Tanzania',
    792 => 'Turkey',
    804 => 'Ukraine',
    336 => 'Vatican City',
    862 => 'Venezuela',
    876 => 'Wallis and Futuna Islands',
  );
  if ($code) {
    if (isset($countries[$code])) {
      return $countries[$code];
    }
    else {
      return uc_country_get_by_id($code);
    }
  }
  return $countries;
}