You are here

SchemaBookSameAs.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_book/src/Plugin/metatag/Tag/SchemaBookSameAs.php

File

schema_book/src/Plugin/metatag/Tag/SchemaBookSameAs.php
View source
<?php

namespace Drupal\schema_book\Plugin\metatag\Tag;

use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;

/**
 * Provides a plugin for the 'schema_book_same_as' 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_book_same_as",
 *   label = @Translation("sameAs"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website."),
 *   name = "sameAs",
 *   group = "schema_book",
 *   weight = 0,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaBookSameAs extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaBookSameAs Provides a plugin for the 'schema_book_same_as' meta tag.