You are here

function merci_node_type_insert in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

@todo Please document this function. Implement hook_node_type_insert called via node_type_save NOTE: // Saving the content type after saving the variables allows modules to act // on those variables via hook_node_type_insert(). via http://api.drupal.org/api/drupal/modules--node--content_types.inc/functi...

See also

http://drupal.org/node/1354

File

./merci.module, line 1502
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function merci_node_type_insert($info) {
  merci_node_type_update_variables($info, FALSE);
  cache_clear_all('merci_' . $info->type . '_data', 'cache');
  cache_clear_all('merci_content_type_info', 'cache');
}