metatag_app_links.module in Metatag 8
Same filename and directory in other branches
Contains metatag_app_links.module.
File
metatag_app_links/metatag_app_links.moduleView source
<?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:
}
}
Functions
Name | Description |
---|---|
metatag_app_links_help | Implements hook_help(). |