function commerce_checkout_panes_reset in Commerce Core 7
Resets the cached list of checkout panes.
File
- modules/
checkout/ commerce_checkout.module, line 631 - Enable checkout as a multi-step form with customizable pages and a simple checkout pane API.
Code
function commerce_checkout_panes_reset() {
$checkout_panes =& drupal_static('commerce_checkout_panes');
$checkout_panes = NULL;
}