You are here

function help_example_menu in Advanced Help 8

Same name and namespace in other branches
  1. 5 help_example/help_example.module \help_example_menu()
  2. 6 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 11
Provide example help for the advanced help module.

Code

function help_example_menu() {

  // View help topic index.
  $items['admin/help_example'] = [
    'title' => 'Example help',
    'page callback' => 'help_example_index_page',
    'access arguments' => [
      'view advanced help index',
    ],
    'weight' => 9,
  ];
  return $items;
}