You are here

function help_example_index_page in Advanced Help 8

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

Help topic index.

1 string reference to 'help_example_index_page'
help_example_menu in help_example/help_example.module
Implements hook_menu().

File

help_example/help_example.module, line 25
Provide example help for the advanced help module.

Code

function help_example_index_page() {
  $output = theme('advanced_help_topic', [
    'module' => 'help_example',
    'topic' => 'about-php',
  ]);
  $output .= ' ' . t('Click the help icon to view some example help about the PHP programming language (from wikipedia.org). Be sure to run cron to update the index if you want to try out the search features.');
  return $output;
}