function views_row_insert_help in Views Row Insert 8
Same name and namespace in other branches
- 7 views_row_insert.module \views_row_insert_help()
Implements hook_help().
@inheritdoc
File
- ./
views_row_insert.module, line 19 - Contains views_row_insert.module.
Code
function views_row_insert_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the views_row_insert module.
case 'help.page.views_row_insert':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Views style plugin to insert custom rows with html data or blocks content into view results.') . '</p>';
return $output;
default:
}
}