You are here

function merci_line_item_types_reset in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Resets the cached list of line item types.

File

merci_line_item/merci_line_item.module, line 612
Defines the core MERCI line item entity and API functions interact with line items.

Code

function merci_line_item_types_reset() {
  $line_item_types =& drupal_static('merci_line_item_types');
  $line_item_types = NULL;
  entity_info_cache_clear();
}