You are here

function bef_test_help in Better Exposed Filters 8.4

Same name and namespace in other branches
  1. 8.5 tests/modules/bef_test/bef_test.module \bef_test_help()
  2. 8.3 tests/bef_test/bef_test.module \bef_test_help()

Implements hook_help().

File

tests/modules/bef_test/bef_test.module, line 13
Contains bef_test.module..

Code

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

    // Main module help for the bef_test module.
    case 'help.page.bef_test':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Test module for Better Exposed Filters') . '</p>';
      return $output;
    default:
  }
}