You are here

function notifications_perm in Notifications 5

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_perm()
  2. 6 notifications.module \notifications_perm()
  3. 6.2 notifications.module \notifications_perm()
  4. 6.3 notifications.module \notifications_perm()

Implementation of hook_perms()

File

./notifications.module, line 146
Notifications module

Code

function notifications_perm() {
  return array_merge(array(
    'administer notifications',
    'maintain own subscriptions',
  ));
}