function responsive_views_grid_help in Responsive Views Grid 8
Implements hook_help().
File
- ./
responsive_views_grid.module, line 13 - Contains responsive_views_grid.module.
Code
function responsive_views_grid_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the responsive_views_grid module.
case 'help.page.responsive_views_grid':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('A view style plugin for responsive grids.') . '</p>';
return $output;
default:
}
}