function role_watchdog_help in Role Watchdog 5
Same name and namespace in other branches
- 8 role_watchdog.module \role_watchdog_help()
- 6.2 role_watchdog.module \role_watchdog_help()
- 6 role_watchdog.module \role_watchdog_help()
- 7.2 role_watchdog.module \role_watchdog_help()
- 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.');
}
}