You are here

function metatag_app_links_help in Metatag 8

Implements hook_help().

File

metatag_app_links/metatag_app_links.module, line 13
Contains metatag_app_links.module.

Code

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

    // Main module help for the metatag_app_links module.
    case 'help.page.metatag_app_links':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides support for applinks.org meta tags.') . '</p>';
      return $output;
    default:
  }
}