You are here

function footable_menu in FooTable 7.2

Implements hook_menu().

File

./footable.module, line 25
Provides Views integration for the jQuery FooTable plugin.

Code

function footable_menu() {
  $items['admin/config/user-interface/footable/settings'] = array(
    'title' => 'Settings',
    'description' => 'Configure FooTable settings.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'footable_form_admin_settings',
    ),
    'access arguments' => array(
      'administer footable',
    ),
    'file' => 'footable.admin.inc',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}