function role_watchdog_perm in Role Watchdog 6
Same name and namespace in other branches
- 6.2 role_watchdog.module \role_watchdog_perm()
Implementation of hook_perm().
File
- ./
role_watchdog.module, line 29 - Logs changes to user roles.
Code
function role_watchdog_perm() {
return array(
'view role history',
'view own role history',
);
}