You are here

function commerce_shipping_example_commerce_price_component_type_info in Commerce Shipping 7.2

Implements hook_commerce_price_component_type_info().

File

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

Code

function commerce_shipping_example_commerce_price_component_type_info() {
  return array(
    'example_shipping_service_express' => array(
      'title' => t('Express delivery'),
      'weight' => 20,
    ),
  );
}