You are here

function subscriptions_perm in Subscriptions 5

Same name and namespace in other branches
  1. 5.2 subscriptions.module \subscriptions_perm()
  2. 6 subscriptions.module \subscriptions_perm()

Implementation of hook_perm().

File

./subscriptions.module, line 68

Code

function subscriptions_perm() {
  return array(
    'subscribe to content',
    'subscribe to taxonomy terms',
    'subscribe to content types',
    'subscribe to blogs',
    'admin users subscriptions',
    'maintain own subscriptions',
  );
}