You are here

function roleassign_perm in RoleAssign 6

Same name and namespace in other branches
  1. 5 roleassign.module \roleassign_perm()

Implementation of hook_perm().

While editing a user's account information, a user with <code>assign roles</code> permission will be able to select roles for the user from a set of available roles. Roles available are configured by the site administrator.

File

./roleassign.module, line 49
Allows site administrators to further delegate the task of managing user's roles.

Code

function roleassign_perm() {
  return array(
    'assign roles',
  );
}