You are here

function comment_notify_permission in Comment Notify 7

Implements hook_permission().

File

./comment_notify.module, line 157
This module provides comment follow-up e-mail notification for anonymous and registered users.

Code

function comment_notify_permission() {
  return array(
    'administer comment notify' => array(
      'title' => 'Administer Comment Notify',
      'description' => 'Change global comment notification settings.',
    ),
    'subscribe to comments' => array(
      'title' => 'Subscribe to comment notifications',
      'description' => 'Subscribe to receive notifications when new comments are posted.',
    ),
  );
}