You are here

function advanced_help_get_topics in Advanced Help 7

Same name and namespace in other branches
  1. 5 advanced_help.module \advanced_help_get_topics()
  2. 6 advanced_help.module \advanced_help_get_topics()

Search the system for all available help topics.

8 calls to advanced_help_get_topics()
advanced_help_form_system_modules_alter in ./advanced_help.module
Implements hook_form_system_modules_alter().
advanced_help_get_topic in ./advanced_help.module
Get the information for a single help topic.
advanced_help_index_page in ./advanced_help.module
Page callback to view the advanced help topic index.
advanced_help_search_execute in ./advanced_help.module
Implements hook_search_execute().
advanced_help_search_status in ./advanced_help.module
Implements hook_search_status().

... See full list

File

./advanced_help.module, line 859
Pluggable system to provide advanced help facilities for Drupal and modules.

Code

function advanced_help_get_topics() {
  $ini = _advanced_help_parse_ini();
  return $ini['topics'];
}