You are here

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

Same name and namespace in other branches
  1. 6 modules/merci_inventory/merci_inventory.module \merci_inventory_menu()

Implementation of hook_menu().

File

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

Code

function merci_inventory_menu() {
  $items = array();
  $items['admin/settings/merci/field_sync'] = array(
    'title' => 'Synchronize Fields',
    'page callback' => 'merci_inventory_field_sync',
    'access callback' => 'user_access',
    'access arguments' => array(
      'administer MERCI',
    ),
    'description' => t('Copy fields MERCI Inventory Master fields to other content types.'),
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}