You are here

function merci_inventory_node_operations in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2

Implementation of hook_node_operations().

File

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

Code

function merci_inventory_node_operations($return = null) {
  $operations = array(
    'merci_inventory_update' => array(
      'label' => t('Confirm Selected Items Are Currently in Inventory'),
      'callback' => 'merci_inventory_operations_update',
    ),
  );
  return $operations;
}