SchemaArticleAggregateRating.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/SchemaArticleAggregateRating.phpView source
<?php
namespace Drupal\schema_article\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'schema_article_aggregate_rating' 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_aggregate_rating",
* label = @Translation("aggregateRating"),
* description = @Translation("The overall rating, based on a collection of reviews or ratings, of the item."),
* name = "aggregateRating",
* group = "schema_article",
* weight = 11,
* type = "string",
* secure = FALSE,
* multiple = TRUE,
* property_type = "aggregate_rating",
* tree_parent = {
* "AggregateRating",
* },
* tree_depth = 0,
* )
*/
class SchemaArticleAggregateRating extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaArticleAggregateRating | Provides a plugin for the 'schema_article_aggregate_rating' meta tag. |