function superfish_help in Superfish 6
Same name and namespace in other branches
- 8 superfish.module \superfish_help()
- 7 superfish.module \superfish_help()
Implements hook_help().
File
- ./
superfish.module, line 33 - Enables the use of jQuery Superfish plugin for Drupal menus.
Code
function superfish_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/settings/modules#description':
$output .= t('Superfish adds jQuery Superfish plugin to your menus.');
break;
case 'admin/settings/superfish':
$output .= t('<p>Block-specific Superfish settings could be found at !link</p>', array(
'!link' => l('admin/build/block', 'admin/build/block'),
));
break;
}
return $output;
}