You are here

function hook_commerce_shipping_service_info_alter in Commerce Shipping 7.2

Allows modules to alter the shipping services defined by other modules.

Parameters

array $shipping_services: The array of shipping services defined by other modules.

See also

hook_commerce_shipping_service_info()

1 function implements hook_commerce_shipping_service_info_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

commerce_shipping_ui_commerce_shipping_service_info_alter in ./commerce_shipping_ui.module
Implements hook_commerce_shipping_service_info_alter().
1 invocation of hook_commerce_shipping_service_info_alter()
commerce_shipping_services in ./commerce_shipping.module
Returns an array of shipping services keyed by name.

File

./commerce_shipping.api.php, line 101
Contains API for commerce shipping module.

Code

function hook_commerce_shipping_service_info_alter(&$shipping_services) {

  // No example.
}