You are here

function advanced_help_get_settings in Advanced Help 7

Same name and namespace in other branches
  1. 6 advanced_help.module \advanced_help_get_settings()

Returns advanced help settings.

2 calls to advanced_help_get_settings()
advanced_help_get_module_name in ./advanced_help.module
Small helper function to get a module's proper name.
advanced_help_index_page in ./advanced_help.module
Page callback to view the advanced help topic index.

File

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

Code

function advanced_help_get_settings() {
  $ini = _advanced_help_parse_ini();
  return $ini['settings'];
}