function notify_help in Notify 1.0.x
Same name and namespace in other branches
- 8 notify.module \notify_help()
- 5.2 notify.module \notify_help()
- 5 notify.module \notify_help()
- 6 notify.module \notify_help()
- 7 notify.module \notify_help()
- 2.0.x notify.module \notify_help()
Implements hook_help().
File
- ./
notify.module, line 34 - Notify module sends e-mail digests of new content and comments.
Code
function notify_help($path, $arg) {
switch ($path) {
case 'admin/help#notify':
$output = '<p>' . t('The notification module allows users to subscribe to periodic e-mails which include all new or revised content and/or comments much like the daily news letters sent by some websites. Even if this feature is not configured for normal site users, it can be a useful feature for an administrator of a site to monitor content submissions and comment posts.') . '</p>';
$output .= '<p>' . t('The administrator sets the frequency of the e-mails in the notify administration interface. They can also set how many e-mail failures should occur before notify stops sending notifications. Note that cron must be enabled for notifications to be sent out.') . '</p>';
$output .= t('<p>For more information please read the community documentation handbook :notifyhb</p>.', [
':notifyhb' => 'http://www.drupal.org/handbook/modules/notify/',
'@link_title' => 'Notify page',
]);
return $output;
}
}