You are here

function apply_for_role_perm in Apply for role 6

Same name and namespace in other branches
  1. 5 apply_for_role.module \apply_for_role_perm()

Implementation of hook_perm().

File

./apply_for_role.module, line 33
Allows users to apply for roles.

Code

function apply_for_role_perm() {
  return array(
    'administer apply for role',
    'approve role applications',
    'apply for roles',
  );
}