summaryrefslogtreecommitdiff
path: root/modules/help
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-01 10:17:34 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-01 10:17:34 +0000
commita8b218827a400cf5ced7db133be0a0f9e2180875 (patch)
treeef94631d313824ad89e204df283551c5c3bb3f53 /modules/help
parent3f4d18fafc2718a056be07b9bf3c51ecfa610f33 (diff)
downloadbrdo-a8b218827a400cf5ced7db133be0a0f9e2180875.tar.gz
brdo-a8b218827a400cf5ced7db133be0a0f9e2180875.tar.bz2
- Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! /
Diffstat (limited to 'modules/help')
-rw-r--r--modules/help/help.module14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index e1bec5680..0624ed196 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -84,6 +84,20 @@ function help_links_as_list() {
*/
function help_help($section) {
switch ($section) {
+ case 'admin/help#help':
+ $output = '<p>'. t('The help module displays context sensitive help information. Users can learn how to use modules and accomplish tasks quicker with less errors by clicking on links in provided by the help module.') .'</p>';
+ $output .= t('<p>Modules can make documentation available to other modules with this module. All user help should be presented using this module. Some examples of help: </p>
+<ul>
+<li>The name of a module (unused, but there).</li>
+<li>The description found on the admin/system/modules page.</li>
+<li>The module\'s help text, displayed on the admin/help page and through the module\'s individual help link.</li>
+<li>The help for a distributed authorization module (if applicable).</li>
+<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://www.drupal.org/handbook/modules/help/')) .'</p>';
+ return $output;
case 'admin/modules#description':
return t('Manages the display of online help.');
}