function comment_notify_help in Comment Notify 5
Same name and namespace in other branches
- 8 comment_notify.module \comment_notify_help()
- 5.2 comment_notify.module \comment_notify_help()
Implementation of hook_help().
File
- ./
comment_notify.module, line 39 - 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;
}
}