You are here

function commerce_shipping_example_commerce_shipping_method_info in Commerce Shipping 7.2

Implements hook_commerce_shipping_method_info().

File

modules/commerce_shipping_example.module, line 11
Defines an example shipping method for testing and development.

Code

function commerce_shipping_example_commerce_shipping_method_info() {
  $shipping_methods = array();
  $shipping_methods['example_shipping_method'] = array(
    'title' => t('Example shipping method'),
    'description' => t('Defines a single flat rate service with a couple of service details.'),
  );
  return $shipping_methods;
}