function roleassign_perm in RoleAssign 5
Same name and namespace in other branches
- 6 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 66
Code
function roleassign_perm() {
return array(
'assign roles',
);
}