function dhtml_menu_help in DHTML Menu 6.4
Same name and namespace in other branches
- 8 dhtml_menu.module \dhtml_menu_help()
- 6.3 dhtml_menu.module \dhtml_menu_help()
- 7 dhtml_menu.module \dhtml_menu_help()
Implementation of hook_help().
File
- ./
dhtml_menu.module, line 14
Code
function dhtml_menu_help($path) {
switch ($path) {
case 'admin/settings/dhtml_menu':
$text = '<p>' . t('DHTML Menu adds dynamic functionality to the menus of your site. Ordinarily, reaching the child elements below an item requires you to visit its page. With this module enabled, clicking on an item with child elements will expand it without leaving the page, saving you the time of waiting for the page to load.') . '</p>';
$text .= '<p>' . t('<strong>Note:</strong> Links that gain a dynamic Javascript effect naturally stop working as normal links. Since you will occasionally need to visit a page that has sub-items (like the <a href="@url">main administration page</a>), this module provides several different options for static and dynamic navigation to coexist.', array(
'@url' => url('admin'),
)) . '</p>';
return $text;
}
}