You are here

function uuid_menu in Universally Unique IDentifier 6

Same name and namespace in other branches
  1. 7 uuid.module \uuid_menu()

Implementation of hook_menu().

File

./uuid.module, line 11
Main module functions for the uuid module.

Code

function uuid_menu() {
  $items = array();
  $items['admin/settings/uuid'] = array(
    'title' => 'Universally Unique IDentifier',
    'description' => 'Configure automatically UUID generation settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'uuid_admin',
    ),
    'access arguments' => array(
      'administer content types',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'uuid.admin.inc',
  );
  return $items;
}