function help_example_index_page in Advanced Help 6
Same name and namespace in other branches
- 8 help_example/help_example.module \help_example_index_page()
- 5 help_example/help_example.module \help_example_index_page()
- 7 help_example/help_example.module \help_example_index_page()
Topic index callback.
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 24 - Provide example help for the advanced help module.
Code
function help_example_index_page() {
$output = theme('advanced_help_topic', 'help_example', '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;
}