9679777de78a6b831d74ffd5d9006532e278853a
[yaffs-website] / web / modules / contrib / metatag / metatag_verification / src / Plugin / metatag / Tag / Bing.php
1 <?php
2
3 namespace Drupal\metatag_verification\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
6
7 /**
8  * Provides a plugin for the 'msvalidate.01' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "bing",
12  *   label = @Translation("Bing"),
13  *   description = @Translation("A string provided by <a href=':bing'>Bing</a>, full details are available from the <a href=':verify_url'>Bing online help</a>.", arguments = { ":bing" = "http://www.bing.com/", ":verify_url" = "http://www.bing.com/webmaster/help/how-to-verify-ownership-of-your-site-afcfefc6" }),
14  *   name = "msvalidate.01",
15  *   group = "site_verification",
16  *   weight = 3,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class Bing extends MetaNameBase {
23 }