summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-11-21 20:14:19 +0000
committerDries Buytaert <dries@buytaert.net>2006-11-21 20:14:19 +0000
commitb004f328eec10308fe3b310c640d5f376241f4cd (patch)
treef92bde5cb09039f947505b35ef68134a409f83c6 /modules/help/help.module
parente08f5f27bd5b5dd41f0dbcfcca9fad0418aafb55 (diff)
downloadbrdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.gz
brdo-b004f328eec10308fe3b310c640d5f376241f4cd.tar.bz2
- Patch #92992 by webchick and neclimdul: clean up documentation that is superseded by the new 'by module' administration dashboard.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index 9cd1471f3..23a7b12a1 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -115,7 +115,6 @@ function help_help($section) {
<li>The description of a post type (if applicable).</li>
</ul>
');
- $output .= '<p>'. t('You can not administer the help system.') .'</p>';
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@help">Help page</a>.', array('@help' => 'http://drupal.org/handbook/modules/help/')) .'</p>';
return $output;
}
@@ -135,6 +134,10 @@ function help_page() {
else {
$output .= $temp;
}
+
+ $admin_tasks = system_get_module_admin_tasks($name);
+ ksort($admin_tasks);
+ $output .= theme('item_list', $admin_tasks, t('@module administration pages', array('@module' => $name)));
}
return $output;
}