You are here

function metatag_test_custom_route_help in Metatag 8

Implements hook_help().

File

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

Code

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

    // Main module help for the metatag_test_custom_route module.
    case 'help.page.metatag_test_custom_route':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Support module for testing handling of a custom route.') . '</p>';
      return $output;
    default:
  }
}