function _uc_usps_intl_services in Ubercart 5
Same name and namespace in other branches
- 6.2 shipping/uc_usps/uc_usps.module \_uc_usps_intl_services()
- 7.3 shipping/uc_usps/uc_usps.module \_uc_usps_intl_services()
3 calls to _uc_usps_intl_services()
- uc_usps_admin_settings in shipping/
uc_usps/ uc_usps.module - Configure USPS settings.
- uc_usps_intl_quote in shipping/
uc_usps/ uc_usps.module - Callback for retrieving USPS shipping quote to other countries.
- uc_usps_shipping_method in shipping/
uc_usps/ uc_usps.module - Implementation of Übercart's hook_shipping_method().
File
- shipping/
uc_usps/ uc_usps.module, line 727 - Shipping quote method module that receives quotes from the United States Postal Service via XML web service.
Code
function _uc_usps_intl_services() {
return array(
1 => t('Express Mail International (EMS)'),
2 => t('Priority Mail International'),
//3 => t('First Class Mail International'), // Deprecated May 12, 2008
4 => t('Global Express Guaranteed'),
6 => t('Global Express Guaranteed Non-Document Rectangular'),
7 => t('Global Express Guaranteed Non-Document Non-Rectangular'),
8 => t('Priority Mail International Flat Rate Envelope'),
9 => t('Priority Mail International Flat Rate Box'),
10 => t('Express Mail International (EMS) Flat Rate Envelope'),
13 => t('First Class Mail International Letter'),
14 => t('First Class Mail International Flat'),
15 => t('First Class Mail International Parcel'),
);
}