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

Implementation of hook_help().

File

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

Code

function tracker_help($section) {
  switch ($section) {
    case 'admin/help#tracker':
      $output = '<p>' . t('The tracker module displays the most recently added or updated content to the website allowing users to see the most recent contributions.  The tracker module provides user level tracking for those who like to follow the contributions of particular authors.') . '</p>';
      $output .= '<p>' . t('The  &quot;recent posts&quot; page is available via a link in the navigation menu block and contains a reverse chronological list of new and recently-updated content. The table displays  the content type, the title, the author\'s name, how many comments that item has received, and when it was last updated. Updates include any changes to the text, either by the original author or someone else, as well as any new comments added to an item.  To use the tracker module to <em>watch</em> for a user\'s updated content, click on that user\'s profile, then the <em>track</em> tab.') . '</p>';
      $output .= t('<p>You can</p>
<ul>
<li>view the <a href="%tracker">most recent posts</a>.</li>
<li>view <a href="%profile">user profiles</a> and select the track tab.</li>
<li>not administer this module.</li>
</ul>
', array(
        '%tracker' => url('tracker'),
        '%profile' => url('profile'),
      ));
      $output .= '<p>' . t('For more information please read the configuration and customization handbook <a href="%tracker">Tracker page</a>.', array(
        '%tracker' => 'http://drupal.org/handbook/modules/tracker/',
      )) . '</p>';
      return $output;
    case 'admin/modules#description':
      return t('Enables tracking of recent posts for users.');
  }
}