You are here

function commerce_shipping_services_reset in Commerce Shipping 7.2

Resets the cached list of shipping services.

1 call to commerce_shipping_services_reset()
commerce_shipping_modules_enabled in ./commerce_shipping.module
Implements hook_modules_enabled().

File

./commerce_shipping.module, line 391
Defines a system for calculating shipping costs associated with an order.

Code

function commerce_shipping_services_reset() {
  $shipping_services =& drupal_static('commerce_shipping_services');
  $shipping_services = NULL;
}