You are here

function tools_menu in Tools 7

Implements hook_menu().

File

./tools.module, line 6

Code

function tools_menu() {
  $items = array();
  $items['admin/structure/tools'] = array(
    'title' => 'Tools',
    'description' => 'Manage tools.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'tools_admin_form',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'tools.admin.inc',
    'access arguments' => array(
      'access tools',
    ),
  );
  return $items;
}