SchemaReviewName.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_review\Plugin\metatag\TagFile
schema_review/src/Plugin/metatag/Tag/SchemaReviewName.phpView source
<?php
namespace Drupal\schema_review\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'name' 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_review_name",
* label = @Translation("name"),
* description = @Translation("The name of the review."),
* name = "name",
* group = "schema_review",
* weight = 0,
* type = "string",
* secure = FALSE,
* multiple = FALSE
* )
*/
class SchemaReviewName extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaReviewName | Provides a plugin for the 'name' meta tag. |