You are here

function _uc_usps_intl_env_services in Ubercart 6.2

Same name and namespace in other branches
  1. 7.3 shipping/uc_usps/uc_usps.module \_uc_usps_intl_env_services()

Maps international envelope services to their IDs.

2 calls to _uc_usps_intl_env_services()
uc_usps_admin_settings in shipping/uc_usps/uc_usps.admin.inc
Configure USPS settings.
uc_usps_shipping_method in shipping/uc_usps/uc_usps.module
Implements hook_shipping_method().

File

shipping/uc_usps/uc_usps.module, line 874
Shipping quote method module that receives quotes from the United States Postal Service via XML web service.

Code

function _uc_usps_intl_env_services() {
  return array(
    13 => t('First Class Mail International Letter'),
    14 => t('First Class Mail International Large Envelope'),
    2 => t('Priority Mail International'),
    8 => t('Priority Mail International Flat Rate Envelope'),
    4 => t('Global Express Guaranteed'),
    12 => t('GXG Envelopes'),
    1 => t('Express Mail International (EMS)'),
    10 => t('Express Mail International (EMS) Flat Rate Envelope'),
  );
}