You are here

function user_perm in Drupal 5

Same name and namespace in other branches
  1. 4 modules/user.module \user_perm()
  2. 6 modules/user/user.module \user_perm()

Implementation of hook_perm().

File

modules/user/user.module, line 424
Enables the user registration and login system.

Code

function user_perm() {
  return array(
    'administer access control',
    'administer users',
    'access user profiles',
    'change own username',
  );
}