You are here

bef_test.module in Better Exposed Filters 8.4

Same filename and directory in other branches
  1. 8.5 tests/modules/bef_test/bef_test.module

Contains bef_test.module..

File

tests/modules/bef_test/bef_test.module
View source
<?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:
  }
}

Functions

Namesort descending Description
bef_test_help Implements hook_help().