function menu_minipanels_help in Menu Minipanels 7
Same name and namespace in other branches
- 6 menu_minipanels.module \menu_minipanels_help()
- 7.2 menu_minipanels.module \menu_minipanels_help()
Implements hook_help().
File
- ./
menu_minipanels.module, line 95 - Allows an administrator to specify a minipanel to be associated with a Drupal menu item. When that menu item is hovered or clicked (as per config), the minipanel content will be shown using the qTip javascript library.
Code
function menu_minipanels_help($path, $arg) {
switch ($path) {
case 'admin/config/user-interface/menu_minipanels':
return '<p>' . t('The menu minipanels module integrates the very popular qTip tooltip library into Drupal. Visit the <a href="!reference_url">qTip reference</a> to learn about the various configuration options.', array(
'!reference_url' => 'http://craigsworks.com/projects/qtip/',
)) . '</p>';
}
}