You are here

function role_watchdog_help in Role Watchdog 5

Same name and namespace in other branches
  1. 8 role_watchdog.module \role_watchdog_help()
  2. 6.2 role_watchdog.module \role_watchdog_help()
  3. 6 role_watchdog.module \role_watchdog_help()
  4. 7.2 role_watchdog.module \role_watchdog_help()
  5. 7 role_watchdog.module \role_watchdog_help()

Implementation of hook_help().

File

./role_watchdog.module, line 15
Logs changes to user roles.

Code

function role_watchdog_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Logs changes to user roles.');
    case 'admin/settings/role_watchdog':
      return t('Role Watchdog automatically logs all role changes made through the user profile or the User List. Role Watchdog can also monitor one or more roles for user additions or deletions and notify via email whenever a change occurs.');
  }
}