You are here

function commerce_ups_commerce_shipping_method_info in Commerce UPS 7

Same name and namespace in other branches
  1. 7.2 commerce_ups.module \commerce_ups_commerce_shipping_method_info()

Implements hook_commerce_shipping_method_info().

File

./commerce_ups.module, line 31

Code

function commerce_ups_commerce_shipping_method_info() {
  $shipping_methods = array();
  $shipping_methods['ups'] = array(
    'title' => t('UPS'),
    'description' => t('Quote rates from UPS'),
  );
  return $shipping_methods;
}