<?php

/**
 * @file
 * Contains metatag_dc_advanced.module.
 */

use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function metatag_dc_advanced_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    // Main module help for the metatag_dc_advanced module.
    case 'help.page.metatag_dc_advanced':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides forty additional meta tags from the &lt;a href=&quot;http://dublincore.org/&quot;&gt;Dublin Core Metadata Institute&lt;/a&gt;.') . '</p>';
      return $output;

    default:
  }
}
