You are here

function comment_notify_help in Comment Notify 5.2

Same name and namespace in other branches
  1. 8 comment_notify.module \comment_notify_help()
  2. 5 comment_notify.module \comment_notify_help()

Implementation of hook_help().

File

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

Code

function comment_notify_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Comment follow-up e-mail notification for anonymous and registered users.');
      break;
  }
}