You are here

function jq_maphilight_menu in jQuery Map Hilight 6

Same name and namespace in other branches
  1. 5 jq_maphilight.module \jq_maphilight_menu()
  2. 7 jq_maphilight.module \jq_maphilight_menu()

Implemention of hook_menu().

File

./jq_maphilight.module, line 49
Configurable javascript based image map hilighting using the jquery map hilight plugin.

Code

function jq_maphilight_menu() {
  $items = array();
  $items['admin/settings/jq_maphilight'] = array(
    'title' => 'JQuery Map Hilight',
    'description' => 'Javascript image map highlighting using the jQuery Map Hilight plugin.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'jq_maphilight_admin_settings',
    ),
    'access callback' => 'user_access',
    'access arguments' => array(
      'administer site configuration',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}