You are here

function superfish_help in Superfish 7

Same name and namespace in other branches
  1. 8 superfish.module \superfish_help()
  2. 6 superfish.module \superfish_help()

Implements hook_help().

File

./superfish.module, line 37
Enables the use of jQuery Superfish plugin for Drupal menus.

Code

function superfish_help($path, $arg) {
  $output = '';
  switch ($path) {
    case 'admin/modules#description':
      $output .= t('jQuery Superfish plugin for your Drupal menus.');
      break;
    case 'admin/config/user-interface/superfish':
      $output .= t('<p>Block-specific Superfish settings could be found at !link</p>', array(
        '!link' => l(t('Blocks management'), 'admin/structure/block'),
      ));
      break;
  }
  return $output;
}