You are here

function subuser_perm in Subuser 6

Same name and namespace in other branches
  1. 5 subuser.module \subuser_perm()

Implementation of hook_perm().

File

./subuser.module, line 55
Allows users of a particular role to create sub user account in another role.

Code

function subuser_perm() {
  return array(
    'create subuser',
    'switch subuser',
    'administer subuser settings',
    'administer subusers',
    'bypass subuser limit',
  );
}