You are here

function dhtml_menu_help in DHTML Menu 6.3

Same name and namespace in other branches
  1. 8 dhtml_menu.module \dhtml_menu_help()
  2. 6.4 dhtml_menu.module \dhtml_menu_help()
  3. 7 dhtml_menu.module \dhtml_menu_help()

Implementation of hook_help().

File

./dhtml_menu.module, line 231
dhtml_menu.module Adds preprocessors to the menu theming functions that will add dynamic expansion to their menus.

Code

function dhtml_menu_help($path) {
  switch ($path) {
    case 'admin/settings/dhtml_menu':
      return t('<em>DHTML Menu</em> adds dynamic functionality to the menus of your site. Ordinarily, reaching the child elements below an item requires you to visit its page. With DHTML Menu, clicking on an item with child elements will expand it without leaving the page, saving time. You can reach the actual page of such an item either by double-clicking on it or visiting the small extra link that will be shown right below it when expanded.');
  }
}