You are here

function tablesorter_menu in Tablesorter 7.2

Same name and namespace in other branches
  1. 7 tablesorter.module \tablesorter_menu()

Implements hook_menu().

File

./tablesorter.module, line 23
tablesorter.

Code

function tablesorter_menu() {
  $items = array();
  $items['admin/config/user-interface/tablesorter'] = array(
    'title' => 'Tablesorter',
    'description' => 'Configuration for Tablesorter',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'tablesorter_form',
    ),
    'access arguments' => array(
      'access tablesorter content',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}