You are here

function themekey_user_profile_help in ThemeKey 7.2

Same name and namespace in other branches
  1. 7.3 themekey_user_profile.module \themekey_user_profile_help()
  2. 7 themekey_user_profile.module \themekey_user_profile_help()

Implements hook_help().

1 string reference to 'themekey_user_profile_help'
themekey_user_profile_form_alter in ./themekey_user_profile.module
Implements hook_form_alter().

File

./themekey_user_profile.module, line 40
ThemeKey User Profile allows the user to select a personal theme in her user profile. This theme will be used to render the pages instead of the theme the administrator configured as soon as the user logs in.

Code

function themekey_user_profile_help($path, $arg) {
  switch ($path) {
    case 'admin/help#themekey_user_profile':
      return themekey_help('admin/help#themekey', $arg);
  }
}