You are here

function superfish_menu in Superfish 7

Same name and namespace in other branches
  1. 6 superfish.module \superfish_menu()

Implements hook_menu().

File

./superfish.module, line 11
Enables the use of jQuery Superfish plugin for Drupal menus.

Code

function superfish_menu() {
  $items['admin/config/user-interface/superfish'] = array(
    'title' => 'Superfish',
    'description' => 'Configure Superfish Menus',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'superfish_admin_settings',
    ),
    'access arguments' => array(
      'administer superfish',
    ),
    'file' => 'superfish.admin.inc',
  );
  return $items;
}