You are here

function notifications_account_permission in Notifications 7

Implementation of hook_permission()

File

notifications_account/notifications_account.module, line 82
Notifications module - User subscriptions tabs

Code

function notifications_account_permission() {
  return array(
    'manage own subscriptions' => array(
      'title' => t('Manage own subscriptions'),
      'description' => t('Access the subscriptions management tab to view and edit own subscriptions.'),
    ),
  );
}