You are here

function accordion_menus_help in Accordion Menus 8.2

Same name and namespace in other branches
  1. 8.4 accordion_menus.module \accordion_menus_help()
  2. 8.3 accordion_menus.module \accordion_menus_help()

Implements hook_help().

@inheritdoc

File

./accordion_menus.module, line 26
The accordion menus module provide menu as accordion manner as block basis.

Code

function accordion_menus_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.accordion_menus':
      return t('This module will display a Drupal menu using a jQuery UI accordion effect. The
      top-level menu items are referred to as header items. The accordion effect is
      invoked when the triggering event occurs on a header item. The triggering event
      may be a mouse down, mouse click, or mouse over. The submenu expands to display
      the menu items beneath the header. A subsequent triggering event on the same
      header item collapses the menu beneath it.');
  }
  return NULL;
}