You are here

function help_example_menu in Advanced Help 6

Same name and namespace in other branches
  1. 8 help_example/help_example.module \help_example_menu()
  2. 5 help_example/help_example.module \help_example_menu()
  3. 7 help_example/help_example.module \help_example_menu()

Implements 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['admin/help_example'] = array(
    'title' => 'Example help',
    'page callback' => 'help_example_index_page',
    'access arguments' => array(
      'view advanced help index',
    ),
    'weight' => 9,
  );
  return $items;
}