You are here

function hook_commerce_shipping_method_info_alter in Commerce Shipping 7.2

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

Parameters

array $shipping_methods: The array of shipping methods defined by other modules.

See also

hook_commerce_shipping_method_info()

1 function implements hook_commerce_shipping_method_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_method_info_alter in ./commerce_shipping_ui.module
Implements hook_commerce_shipping_method_info_alter().
1 invocation of hook_commerce_shipping_method_info_alter()
commerce_shipping_methods in ./commerce_shipping.module
Returns an array of shipping methods defined by enabled modules.

File

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

Code

function hook_commerce_shipping_method_info_alter(&$shipping_methods) {

  // No example.
}