You are here

function metatag_routes_help in Metatag Routes 8

Implements hook_help().

File

./metatag_routes.module, line 13
Contains metatag_routes.module.

Code

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

    // Main module help for the ok_metatag_custom module.
    case 'help.page.metatag_routes':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Enables metatags for custom routes') . '</p>';
      return $output;
    default:
  }
}