function simple_responsive_table_help in Simple Responsive Table 8
Implements hook_help().
File
- ./
simple_responsive_table.module, line 13 - Contains simple_responsive_table.module..
Code
function simple_responsive_table_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the simple_responsive_table module.
case 'help.page.simple_responsive_table':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Simple module to make table responsive.') . '</p>';
return $output;
default:
}
}