You are here

function notify_permission in Notify 7

Implements hook_permission().

File

./notify.module, line 124
Notify module sends e-mail digests of new content and comments.

Code

function notify_permission() {
  return array(
    'access notify' => array(
      'title' => t('access notify'),
      'description' => t('Allow user to setup and receive notifications when there is new content.  Enable this for the anonymous user role if you want notification enabled by default for new users.'),
    ),
    'administer notify' => array(
      'title' => t('administer notify'),
      'description' => t('Administer the notify module general settings, default settings and users'),
    ),
    'administer notify queue' => array(
      'title' => t('administer notify queue'),
      'description' => t('Administer the notify queue'),
    ),
    'administer notify skip flags' => array(
      'title' => t('administer notify skip flags'),
      'description' => t('Administer the notify skip flags'),
    ),
  );
}