function jq_maphilight_menu in jQuery Map Hilight 7
Same name and namespace in other branches
- 5 jq_maphilight.module \jq_maphilight_menu()
- 6 jq_maphilight.module \jq_maphilight_menu()
Implements hook_menu().
File
- ./
jq_maphilight.module, line 57 - Configurable javascript based image map highlighting using the jquery maphilight plugin.
Code
function jq_maphilight_menu() {
$items = array();
$items['admin/config/content/jq_maphilight'] = array(
'title' => 'JQuery Map Hilight',
'description' => 'Javascript image map highlighting using the jQuery Maphilight 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;
}