ce1e1fdbd5b3dd9542892c2e434969d92a50284a
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph / src / Plugin / metatag / Tag / OgSiteName.php
1 <?php
2
3 namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;
4
5 use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * The Open Graph "Site name" meta tag.
9  *
10  * @MetatagTag(
11  *   id = "og_site_name",
12  *   label = @Translation("Site name"),
13  *   description = @Translation("A human-readable name for the site, e.g., <em>IMDb</em>."),
14  *   name = "og:site_name",
15  *   group = "open_graph",
16  *   weight = 1,
17  *   type = "label",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class OgSiteName extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }