function charts_blocks_help in Charts 8.4
Same name and namespace in other branches
- 8.3 modules/charts_blocks/charts_blocks.module \charts_blocks_help()
- 5.0.x modules/charts_blocks/charts_blocks.module \charts_blocks_help()
Implements hook_help().
File
- modules/
charts_blocks/ charts_blocks.module, line 13 - Contains chart_block_example.module.
Code
function charts_blocks_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the charts_blocks module.
case 'help.page.charts_blocks':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Create Charts blocks without the need for Views.') . '</p>';
return $output;
default:
}
}