You are here

function notify_help in Notify 6

Same name and namespace in other branches
  1. 8 notify.module \notify_help()
  2. 5.2 notify.module \notify_help()
  3. 5 notify.module \notify_help()
  4. 7 notify.module \notify_help()
  5. 2.0.x notify.module \notify_help()
  6. 1.0.x notify.module \notify_help()

Implementation of hook_help().

File

./notify.module, line 19
Notify module sends email digests of new content and comments.

Code

function notify_help($section) {
  switch ($section) {
    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>You can</p><ul><li>set up your site to run tasks automatically at required intervals. For more information, see <a href="@admin-help-system">cron</a>.</li><li>administer notify <a href="@admin-settings-notify">administer &gt;&gt; settings &gt;&gt; notify</a>.</li></ul>', array(
        '@admin-help-system' => url('admin/help/system'),
        '@admin-settings-notify' => url('admin/settings/notify'),
      ));
      $output .= '<p>' . t('For more information please read the configuration and customization handbook <a href="@notify">Notify page</a>.', array(
        '@notify' => 'http://www.drupal.org/handbook/modules/notify/',
      )) . '</p>';
      return $output;
  }
}