You are here

function facets_block_help in Facets Block 8

Implements hook_help().

File

./facets_block.module, line 14
This is the primary module file.

Code

function facets_block_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.facets_block':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Render Facets in a single block.') . '</p>';
      return $output;
  }
}