function tablesorter_menu in Tablesorter 7
Same name and namespace in other branches
- 7.2 tablesorter.module \tablesorter_menu()
Implements hook_menu().
File
- ./
tablesorter.module, line 64 - 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;
}