SchemaArticleSpeakable.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/SchemaArticleSpeakable.phpView source
<?php
namespace Drupal\schema_article\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaSpeakableBase;
/**
* Provides a plugin for the 'schema_web_page_speakable' 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_speakable",
* label = @Translation("Speakable"),
* description = @Translation("Speakable property."),
* name = "speakable",
* group = "schema_article",
* weight = 5,
* type = "string",
* secure = FALSE,
* multiple = TRUE
* )
*/
class SchemaArticleSpeakable extends SchemaSpeakableBase {
}
Classes
Name | Description |
---|---|
SchemaArticleSpeakable | Provides a plugin for the 'schema_web_page_speakable' meta tag. |