function block_style_plugins_help in Block Style Plugins 8
Same name and namespace in other branches
- 8.2 block_style_plugins.module \block_style_plugins_help()
Implements hook_help().
File
- ./
block_style_plugins.module, line 14 - Contains block_style_plugins.module.
Code
function block_style_plugins_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the block_style_plugins module.
case 'help.page.block_style_plugins':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Plugin system for allowing modules or themes to add style configuration to blocks') . '</p>';
return $output;
default:
}
}