SchemaMovieSameAs.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_movie\Plugin\metatag\TagFile
schema_movie/src/Plugin/metatag/Tag/SchemaMovieSameAs.phpView source
<?php
namespace Drupal\schema_movie\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'sameAs' 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_movie_same_as",
* label = @Translation("sameAs"),
* description = @Translation("RECOMMENDED BY GOOGLE. URL to a reference web page that unambiguously identifies the work. Example: IMDB, Wikipedia"),
* name = "sameAs",
* group = "schema_movie",
* weight = 0,
* type = "string",
* secure = FALSE,
* multiple = TRUE
* )
*/
class SchemaMovieSameAs extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaMovieSameAs | Provides a plugin for the 'sameAs' meta tag. |