function menu_minipanels_help in Menu Minipanels 7.2
Same name and namespace in other branches
- 6 menu_minipanels.module \menu_minipanels_help()
- 7 menu_minipanels.module \menu_minipanels_help()
Implements hook_help().
File
- ./
menu_minipanels.module, line 27 - Menu MiniPanels provides a flexible "mega menu" solution for Drupal by allowing a minipanel to be associated with a Drupal menu item. When that menu item is hovered, the minipanel content will be shown using standard CSS :hover techniques…
Code
function menu_minipanels_help($path, $arg) {
switch ($path) {
case 'admin/config/user-interface/menu_minipanels':
return '<p>' . t('Menu MiniPanels Version 2 has removed the dependency on the qTip tooltip library and relies on CSS for hover and transition effects. Enhanced menu functionality via JavaScript, such as HoverIntent and Mobile touch device support, may be added with the <a href="!nice_menus">Nice Menus</a>, <a href="!superfish">Superfish</a>, or <a href="!dhtml_menu">DHTML Menu</a> modules.', array(
'!nice_menus' => 'https://drupal.org/project/nice_menus',
'!superfish' => 'https://drupal.org/project/superfish',
'!dhtml_menu' => 'https://drupal.org/project/dhtml_menu',
)) . '</p>';
}
}