SchemaArticleImage.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_article\Plugin\metatag\TagFile
schema_article/src/Plugin/metatag/Tag/SchemaArticleImage.phpView source
<?php
namespace Drupal\schema_article\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaImageBase;
/**
* Provides a plugin for the 'image' 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_image",
* label = @Translation("image"),
* description = @Translation("REQUIRED BY GOOGLE. The primary image for this item."),
* name = "image",
* group = "schema_article",
* weight = 2,
* type = "image",
* secure = FALSE,
* multiple = FALSE
* )
*/
class SchemaArticleImage extends SchemaImageBase {
}
Classes
Name | Description |
---|---|
SchemaArticleImage | Provides a plugin for the 'image' meta tag. |