You are here

function image_hotspots_menu in Image Hotspots 7.2

Implements hook_menu().

File

./image_hotspots.module, line 14
Main function of module.

Code

function image_hotspots_menu() {
  $items['admin/config/media/image-hotspots'] = array(
    'title' => 'Hotspots Style',
    'description' => 'Select CSS settings for displayed Hotspots.',
    'page callback' => 'image_hotspots_style_config',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'image_hotspots_style_config',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
    'file' => 'includes/image_hotspots.admin.inc',
    'file path' => drupal_get_path('module', 'image_hotspots'),
  );
  return $items;
}