You are here

function notifications_tags_permission in Notifications 7

Implementation of hook_permission()

File

notifications_tags/notifications_tags.module, line 48
Subscriptions to taxonomy terms

Code

function notifications_tags_permission() {
  return array(
    'subscribe to taxonomy terms' => array(
      'title' => t('Subscribe to taxonomy terms'),
      'description' => t('Subscribe to content tagged with a given taxonomy term.'),
    ),
    'subscribe to taxonomy vocabulary' => array(
      'title' => t('Subscribe to taxonomy vocabularies'),
      'description' => t('Subscribe to terms in a given taxonomy vocabulary.'),
    ),
  );
}