You are here

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

Implementation of hook_node_operations().

File

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

Code

function merci_inventory_action_info() {
  return array(
    'merci_inventory_operations_update' => array(
      'type' => 'node',
      'label' => t('Confirm Selected Items Are Currently in Inventory'),
      'configurable' => FALSE,
      'aggregate' => TRUE,
    ),
  );
}