You are here

function subscriptions_og_permission in Subscriptions 7

Same name and namespace in other branches
  1. 2.0.x subscriptions_og/subscriptions_og.module \subscriptions_og_permission()

Implements hook_permission().

File

contrib/subscriptions_og/subscriptions_og.module, line 11
Allow users to subscribe to content posted to an organic group.

Code

function subscriptions_og_permission() {
  return array(
    'og subscribe' => array(
      'title' => t('Subscribe to notifications for Organic Groups'),
      'description' => t('Allows users to receive alerts when new content is posted to an Organic group.'),
    ),
  );
}