You are here

function tracker_help in Drupal 6

Same name and namespace in other branches
  1. 8 core/modules/tracker/tracker.module \tracker_help()
  2. 4 modules/tracker.module \tracker_help()
  3. 5 modules/tracker/tracker.module \tracker_help()
  4. 7 modules/tracker/tracker.module \tracker_help()
  5. 9 core/modules/tracker/tracker.module \tracker_help()

Implementation of hook_help().

File

modules/tracker/tracker.module, line 11
Enables tracking of recent posts for users.

Code

function tracker_help($path, $arg) {
  switch ($path) {
    case 'admin/help#tracker':
      $output = '<p>' . t('The tracker module displays the most recently added or updated content on your site, and provides user-level tracking to follow the contributions of particular authors.') . '</p>';
      $output .= '<p>' . t("The <em>Recent posts</em> page is available via a link in the navigation menu block and displays new and recently-updated content (including the content type, the title, the author's name, number of comments, and time of last update) in reverse chronological order. Posts are marked updated when changes occur in the text, or when new comments are added. To use the tracker module to follow a specific user's contributions, select the <em>Track</em> tab from the user's profile page.") . '</p>';
      $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@tracker">Tracker module</a>.', array(
        '@tracker' => 'http://drupal.org/handbook/modules/tracker/',
      )) . '</p>';
      return $output;
  }
}