function menu_minipanels_help in Menu Minipanels 6
Same name and namespace in other branches
- 7.2 menu_minipanels.module \menu_minipanels_help()
- 7 menu_minipanels.module \menu_minipanels_help()
Implements hook_help().
File
- ./
menu_minipanels.module, line 167 - 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/settings/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>';
}
}