You are here

function signup_perm in Signup 5

Same name and namespace in other branches
  1. 5.2 signup.module \signup_perm()
  2. 6.2 signup.module \signup_perm()
  3. 6 signup.module \signup_perm()

Implementation of hook_perm().

Related topics

File

./signup.module, line 224

Code

function signup_perm() {
  return array(
    'sign up for content',
    'view all signups',
    'administer all signups',
    'administer signups for own content',
  );
}