You are here

function forward_test_help in Forward 4.x

Same name and namespace in other branches
  1. 8.2 tests/modules/forward_test/forward_test.module \forward_test_help()
  2. 4.0.x tests/modules/forward_test/forward_test.module \forward_test_help()

Implements hook_help().

File

tests/modules/forward_test/forward_test.module, line 16
Main module file for hooks related to testing Forward.

Code

function forward_test_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.forward_test':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This is a test help page for the forward_test module for the purpose of testing forward functionality.') . '</p>';
      return $output;
    default:
  }
}