function help_example_index_page in Advanced Help 5
Same name and namespace in other branches
- 8 help_example/help_example.module \help_example_index_page()
- 6 help_example/help_example.module \help_example_index_page()
- 7 help_example/help_example.module \help_example_index_page()
1 string reference to 'help_example_index_page'
- help_example_menu in help_example/
help_example.module - Implementation of hook_menu().
File
- help_example/
help_example.module, line 22 - 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;
}