802e247fae2223e55e09ecd52b5e66b21d114122
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / metatag / Tag / MetaItempropBase.php
1 <?php
2
3 namespace Drupal\metatag\Plugin\metatag\Tag;
4
5 /**
6  * This base plugin allows "itemprop"-style meta tags be customized.
7  *
8  * Used with e.g. the Google Plus tags.
9  */
10 abstract class MetaItempropBase extends MetaNameBase {
11
12   /**
13    * {@inheritdoc}
14    */
15   protected $nameAttribute = 'itemprop';
16
17 }