better_exposed_filters-8.x-4.x-dev/tests/modules/bef_test/bef_test.module
tests/modules/bef_test/bef_test.module
<?php
/**
* @file
* Contains bef_test.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
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:
}
}
