Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / metatag / metatag_open_graph_products / src / Plugin / metatag / Tag / ProductPriceCurrency.php
1 <?php
2
3 namespace Drupal\metatag_open_graph_products\Plugin\metatag\Tag;
4
5 use \Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;
6
7 /**
8  * Provides a plugin for the 'product:price:currency' meta tag.
9  *
10  * @MetatagTag(
11  *   id = "product_price_currency",
12  *   label = @Translation("Product price currency"),
13  *   description = @Translation("The price currency of the product."),
14  *   name = "product:price:currency",
15  *   group = "open_graph_products",
16  *   weight = 2,
17  *   type = "string",
18  *   secure = FALSE,
19  *   multiple = FALSE
20  * )
21  */
22 class ProductPriceCurrency extends MetaPropertyBase {
23   // Nothing here yet. Just a placeholder class for a plugin.
24 }