function user_perm in Drupal 4
Same name and namespace in other branches
- 5 modules/user/user.module \user_perm()
- 6 modules/user/user.module \user_perm()
Implementation of hook_perm().
File
- modules/
user.module, line 454 - Enables the user registration and login system.
Code
function user_perm() {
return array(
'administer access control',
'administer users',
'access user profiles',
'change own username',
);
}