You are here

function core_views_facets_help in Core Views Facets 8

Implements hook_help().

File

./core_views_facets.module, line 20
Contains core_views_facets.module.

Code

function core_views_facets_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the core_views_facets module.
    case 'help.page.core_views_facets':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Adds a facet source so exposed views filters can be used as facets as well.') . '</p>';
      return $output;
    default:
  }
  return NULL;
}