function help_example_menu in Advanced Help 5
Same name and namespace in other branches
- 8 help_example/help_example.module \help_example_menu()
- 6 help_example/help_example.module \help_example_menu()
- 7 help_example/help_example.module \help_example_menu()
Implementation of hook_menu().
File
- help_example/
help_example.module, line 10 - Provide example help for the advanced help module.
Code
function help_example_menu() {
// View help topic index.
$items[] = array(
'path' => 'admin/help_example',
'title' => 'Example help',
'callback' => 'help_example_index_page',
'access' => user_access('view advanced help index'),
'weight' => 9,
);
return $items;
}