You are here

function smartmenus_help in Smartmenus.js 8

Implements hook_help().

File

./smartmenus.module, line 13
Contains smartmenus.module.

Code

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

    // Main module help for the smartmenus module.
    case 'help.page.smartmenus':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Responsive drop-down menus with the &lt;a href=&quot;http://www.smartmenus.org/&quot;&gt;Smartmenus&lt;/a&gt; jQuery plugin.') . '</p>';
      return $output;
    default:
  }
}