Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / Google.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * Provides a plugin for the 'google' meta tag.
7  *
8  * @MetatagTag(
9  *   id = "google",
10  *   label = @Translation("Google"),
11  *   description = @Translation("This meta tag communicates with Google. There are currently two directives supported: 'nositelinkssearchbox' to not to show the sitelinks search box, and 'notranslate' to ask Google not to offer a translation of the page. Both options may be added, just separate them with a comma. See <a href='https://support.google.com/webmasters/answer/79812?hl=en'>meta tags that Google understands</a> for further details."),
12  *   name = "google",
13  *   group = "advanced",
14  *   weight = 5,
15  *   type = "label",
16  *   secure = FALSE,
17  *   multiple = FALSE
18  * )
19  */
20 class Google extends MetaNameBase {
21   // Nothing here yet. Just a placeholder class for a plugin.
22 }