You are here

function block_style_plugins_help in Block Style Plugins 8.2

Same name and namespace in other branches
  1. 8 block_style_plugins.module \block_style_plugins_help()

Implements hook_help().

File

./block_style_plugins.module, line 16
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:
  }
}