You are here

function invite_perm in Invite 5

Same name and namespace in other branches
  1. 5.2 invite.module \invite_perm()
  2. 6.2 invite.module \invite_perm()

Implementation of hook_perm().

File

./invite.module, line 58
Allows your users to send and track invitations to join your site.

Code

function invite_perm() {
  return array(
    'send invitations',
    'send mass invitations',
    'track invitations',
    'withdraw accepted invitations',
  );
}