a77d31788d189136a0a1a13114fd7795fe3c321e
[yaffs-website] / web / modules / contrib / metatag / metatag_dc_advanced / metatag_dc_advanced.module
1 <?php
2
3 /**
4  * @file
5  * Contains metatag_dc_advanced.module.
6  */
7
8 use Drupal\Core\Routing\RouteMatchInterface;
9
10 /**
11  * Implements hook_help().
12  */
13 function metatag_dc_advanced_help($route_name, RouteMatchInterface $route_match) {
14   switch ($route_name) {
15     // Main module help for the metatag_dc_advanced module.
16     case 'help.page.metatag_dc_advanced':
17       $output = '';
18       $output .= '<h3>' . t('About') . '</h3>';
19       $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>';
20       return $output;
21
22     default:
23   }
24 }