You are here

function notifications_content_perm in Notifications 5

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

Implementation of hook_perm()

File

notifications_content/notifications_content.module, line 85
Subscriptions to content events

Code

function notifications_content_perm() {
  return array(
    'subscribe to content',
    'subscribe to content type',
    'subscribe to author',
  );
}