summaryrefslogtreecommitdiff
path: root/modules/contextual
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-11 16:57:24 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-11 16:57:24 +0000
commit169656a79bacb510c7ec9cd12c74e869a9e6f6ef (patch)
treee87b7b73799f60b9f0932ee03c11b677435d0b70 /modules/contextual
parentd10a1f700656aef306300e122a12051d4b4b03b7 (diff)
downloadbrdo-169656a79bacb510c7ec9cd12c74e869a9e6f6ef.tar.gz
brdo-169656a79bacb510c7ec9cd12c74e869a9e6f6ef.tar.bz2
- Patch #653000 by jhodgdon, arianek: create help page for Overlay module following new standard.
Diffstat (limited to 'modules/contextual')
-rw-r--r--modules/contextual/contextual.module19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/contextual/contextual.module b/modules/contextual/contextual.module
index f174047be..e414eb3d6 100644
--- a/modules/contextual/contextual.module
+++ b/modules/contextual/contextual.module
@@ -6,6 +6,25 @@
* Adds contextual links to perform actions related to elements on a page.
*/
+
+/**
+ * Implements hook_help().
+ */
+function contextual_help($path, $arg) {
+ switch ($path) {
+ case 'admin/help#contextual':
+ $output = '';
+ $output .= '<h3>' . t('About') . '</h3>';
+ $output .= '<p>' . t('The Contextual links module displays links related to regions of pages on your site to users with <em>access contextual links</em> permission. For more information, see the online handbook entry for <a href="@contextual">Contextual links module</a>.', array('@contextual' => 'http://drupal.org/handbook/modules/contextual')) . '</p>';
+ $output .= '<h3>' . t('Uses') . '</h3>';
+ $output .= '<dl>';
+ $output .= '<dt>' . t('Displaying contextual links') . '</dt>';
+ $output .= '<dd>' . t('Contextual links are supplied by modules, to give you quick access to tasks associated with regions of pages on your site. For instance, if you have a custom menu block displayed in a sidebar of your site, the Blocks and Menus modules will supply links to configure the block and edit the menu. The Contextual links module collects these links into a list for display by your theme, and also adds JavaScript code to the page to hide the links initially, and display them when your mouse hovers over the block.') . '</dd>';
+ $output .= '</dl>';
+ return $output;
+ }
+}
+
/**
* Implements hook_permission().
*/