function views_system_help in Views System 8
Same name and namespace in other branches
- 6.3 views_system.module \views_system_help()
- 6.2 views_system.module \views_system_help()
- 7.4 views_system.module \views_system_help()
- 7.3 views_system.module \views_system_help()
Implements hook_help().
File
- ./
views_system.module, line 17 - Extends the Views module and provides fields, filter criteria, and sort criteria for Modules/Themes/Theme engines.
Code
function views_system_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.views_system':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Views System module extends the Views module and provides fields, filter criteria, and sort criteria for <em>Modules/Themes/Theme engines</em>. For more information, see the online handbook entry for <a href=":views_system">Views System module</a>.', array(
':views_system' => 'https://www.drupal.org/project/views_system',
)) . '</p>';
return $output;
}
}