You are here

function commerce_fedex_commerce_shipping_method_info in Commerce FedEx 7

Implements hook_commerce_shipping_method_info().

File

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

Code

function commerce_fedex_commerce_shipping_method_info() {
  $shipping_methods = array();
  $shipping_methods['fedex'] = array(
    'title' => t('FedEx'),
    'description' => t('Quote rates from FedEx'),
  );
  return $shipping_methods;
}