You are here

function advanced_help_admin_paths_alter in Advanced Help 7

Implements hook_admin_paths_alter().

Force help pages for this module to be rendered in admin theme.

File

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

Code

function advanced_help_admin_paths_alter(&$paths) {
  $paths['help/advanced_help/*'] = TRUE;
}