You are here

function user_perm in Drupal 6

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

Implementation of hook_perm().

File

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

Code

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