You are here

function commerce_fedex_smartpost_indicia_types in Commerce FedEx 7

Returns a list of SmartPost indicia types.

Return value

array List of SmartPost indicia types.

1 call to commerce_fedex_smartpost_indicia_types()
commerce_fedex_settings_form in includes/commerce_fedex.admin.inc
Builds the admin settings form for configuring FedEx.

File

./commerce_fedex.module, line 265
Defines the FedEx shipping method and services for Drupal Commerce.

Code

function commerce_fedex_smartpost_indicia_types() {
  return array(
    'MEDIA_MAIL' => t('Media Mail'),
    'PARCEL_SELECT' => t('Parcel Select'),
    'PRESORTED_BOUND_PRINTED_MATTER' => t('Presorted Bound Printed Matter'),
    'PRESORTED_STANDARD' => t('Presorted Standard'),
    'PARCEL_RETURN' => t('Parcel Return'),
  );
}