You are here

function help_example_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

help_example/help_example.module, line 12
Provide example help for the advanced help module.

Code

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