SchemaArticleHeadline.php in Schema.org Metatag 8.2
Same filename and directory in other branches
Namespace
Drupal\schema_article\Plugin\metatag\TagFile
schema_article/src/Plugin/metatag/Tag/SchemaArticleHeadline.phpView source
<?php
namespace Drupal\schema_article\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'headline' meta tag.
*
* - 'id' should be a globally unique id.
* - 'name' should match the Schema.org element name.
* - 'group' should match the id of the group that defines the Schema.org type.
*
* @MetatagTag(
* id = "schema_article_headline",
* label = @Translation("headline"),
* description = @Translation("REQUIRED BY GOOGLE. Headline of the article."),
* name = "headline",
* group = "schema_article",
* weight = 0,
* type = "string",
* secure = FALSE,
* multiple = FALSE,
* property_type = "text",
* tree_parent = {},
* tree_depth = -1,
* )
*/
class SchemaArticleHeadline extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaArticleHeadline | Provides a plugin for the 'headline' meta tag. |