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 <a href="http://www.smartmenus.org/">Smartmenus</a> jQuery plugin.') . '</p>';
return $output;
default:
}
}