Same name and namespace in other branches
  1. 10 core/modules/tracker/tracker.module \tracker_help()
  2. 4.7.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':
      return t('<p>The tracker module is a handy module for displaying the most recently added or updated content to a Drupal site.  The link to the tracker is labeled <em>recent posts</em> in the user\'s navigation block.  Updates include changes to the text by either the original author or someone else that has permission to edit the content, such as an editor or administrator as well as all comments added to an item.</p>
<p>The Tracker module presents a page listing the recently-updated content written by the user with the content type, the title, the user\'s name, how many comments that item has received, as well as how long ago it was updated.  If an item was written by someone else, tracker will show that item at the top of the list.  An example:</p>
<p>A user named Jessica writes a blog post, then some time passes, and others write blog posts.  Then if John posts a comment to Jessica\'s post, and you have bookmarked John\'s tracker page (see below on how to do this) then Jessica\'s content will appear at the top.</p>
<p>If an user with <i>administer comments</i> (e.g. an administrator or editor of a site) deletes a comment (e.g. it is off-topic, inappropriate language, or unsolicited advertisement), the content item will drop down to when it was updated previous to that deleted comment.</p>
<p>To use the Tracker module to "watch" for a user\'s updated content, click on that user\'s profile, then the "track" tab.</p>');
    case 'admin/modules#description':
      return t('Enables tracking of recent posts for users.');
  }
}