summaryrefslogtreecommitdiff
path: root/modules/tracker
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-26 05:01:50 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-26 05:01:50 +0000
commit37339758d1611af9783888c1f837d1c628b3bab1 (patch)
treea82cebd315ecab359f16deac007ad180631ad784 /modules/tracker
parentf59783f23af547ee07ac072c645f350cecb71824 (diff)
downloadbrdo-37339758d1611af9783888c1f837d1c628b3bab1.tar.gz
brdo-37339758d1611af9783888c1f837d1c628b3bab1.tar.bz2
#635900 by batigolix and arianek: Update Tracker module to new help documentation standard.
Diffstat (limited to 'modules/tracker')
-rw-r--r--modules/tracker/tracker.module14
1 files changed, 11 insertions, 3 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index fbad485a2..ebf2370a3 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -12,9 +12,17 @@
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 content</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. Content is 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>';
+ $output = '<h3>' . t('About') . '</h3>';
+ $output .= '<p>' . t('The Tracker module displays the most recently added and updated content on your site, and allows you to follow new content created by each user. This module has no configuration options. For more information, see the online handbook entry for <a href="@tracker">Tracker module</a>.', array('@tracker' => 'http://drupal.org/handbook/modules/tracker/')) . '</p>';
+ $output .= '<h3>' . t('Uses') . '</h3>';
+ $output .= '<dl>';
+ $output .= '<dt>' . t('Navigation') . '</dt>';
+ $output .= '<dd>' . t('The Tracker module adds a new menu item to the Navigation menu, called <em>Recent content</em>. You can configure menu items via the <a href="@menus">Menus administration page</a>.', array('@menus' => url('admin/structure/menu'))) . '</dd>';
+ $output .= '<dt>' . t('Tracking new and updated site content') . '</dt>';
+ $output .= '<dd>' . t("The <a href='@recent'>Recent content</a> page shows new and updated content in reverse chronological order, listing the content type, title, author's name, number of comments, and time of last update. Content is considered updated when changes occur in the text, or when new comments are added. The <em>My recent content</em> tab limits the list to the currently logged-in user.", array('@recent' => url('tracker'))) . '</dd>';
+ $output .= '<dt>' . t('Tracking user-specific content') . '</dt>';
+ $output .= '<dd>' . t("To follow a specific user's new and updated content, select the <em>Track</em> tab from the user's profile page.") . '</dd>';
+ $output .= '</dl>';
return $output;
}
}