SchemaArticleHasPart.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/SchemaArticleHasPart.phpView source
<?php
namespace Drupal\schema_article\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaHasPartBase;
/**
* Provides a plugin for the 'schema_article_has_part' 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_has_part",
* label = @Translation("hasPart"),
* description = @Translation("RECOMMENDED BY GOOGLE. Use for <a href="":url"">Paywalled content</a>.", arguments = {
* ":url" = "https://developers.google.com/search/docs/data-types/paywalled-content",
* }),
* name = "hasPart",
* group = "schema_article",
* weight = 4,
* type = "string",
* secure = FALSE,
* multiple = FALSE
* )
*/
class SchemaArticleHasPart extends SchemaHasPartBase {
}
Classes
Name | Description |
---|---|
SchemaArticleHasPart | Provides a plugin for the 'schema_article_has_part' meta tag. |