You are here

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

Implement hook_ctools_plugin_api().

File

modules/merci_inventory/merci_inventory.module, line 17
Hooks and functions for MERCI Inventory

Code

function merci_inventory_ctools_plugin_api($module, $api) {
  if ($module == 'field_group' && $api == 'field_group') {
    return array(
      'version' => 1,
    );
  }
}