metatag-8.x-1.x-dev/src/Plugin/metatag/Tag/MetaPropertyBase.php
src/Plugin/metatag/Tag/MetaPropertyBase.php
<?php
namespace Drupal\metatag\Plugin\metatag\Tag;
/**
* This base plugin allows "property"-style meta tags tobe customized.
*
* Used with e.g. the Open Graph tags.
*/
abstract class MetaPropertyBase extends MetaNameBase {
/**
* {@inheritdoc}
*/
protected $nameAttribute = 'property';
/**
* {@inheritdoc}
*/
protected $htmlNameAttribute = 'property';
}
