1 tablesort_example.module | tablesort_example_menu() |
Implements hook_menu().
Related topics
File
- modules/
examples/ tablesort_example/ tablesort_example.module, line 22 - Hook implementations for the Table Sort Example module.
Code
function tablesort_example_menu() {
$items['examples/tablesort_example'] = array(
'title' => 'TableSort example',
'description' => 'Show a page with a sortable table',
'page callback' => 'tablesort_example_page',
'access callback' => TRUE,
);
return $items;
}