You are here

function commerce_shipping_rates_cache_clear in Commerce Shipping 7.2

Clears the shipping rates cache for the specified order.

File

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

Code

function commerce_shipping_rates_cache_clear($order) {
  cache_clear_all($order->order_id . ':', 'cache_commerce_shipping_rates', TRUE);
}