Version 1
[yaffs-website] / web / modules / contrib / metatag / metatag_app_links / metatag_app_links.module
diff --git a/web/modules/contrib/metatag/metatag_app_links/metatag_app_links.module b/web/modules/contrib/metatag/metatag_app_links/metatag_app_links.module
new file mode 100644 (file)
index 0000000..a350752
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+/**
+ * @file
+ * Contains metatag_app_links.module.
+ */
+
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+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:
+  }
+}