You are here

function simple_megamenu_help in Simple Mega Menu 2.0.x

Same name and namespace in other branches
  1. 8 simple_megamenu.module \simple_megamenu_help()

Implements hook_help().

File

./simple_megamenu.module, line 16
Contains simple_megamenu.module.

Code

function simple_megamenu_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the simple_megamenu module.
    case 'help.page.simple_megamenu':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provide a Megamenu entity which can be used on Menu link content to construct a Mega Menu') . '</p>';
      return $output;
    default:
  }
}