You are here

function submenutree_help in Submenu Tree 7.2

Same name and namespace in other branches
  1. 5 submenutree.module \submenutree_help()
  2. 6 submenutree.module \submenutree_help()

Implements hook_help().

File

./submenutree.module, line 76
Primarily Drupal hooks and processing the Submenu Tree display.

Code

function submenutree_help($path, $arg) {
  switch ($path) {
    case 'admin/config/content/submenu-tree':
      $output = '';
      $output .= '<p>' . t('Configure Submenu Tree settings.') . '</p>';
      return $output;
  }
}