You are here

SchemaBookImage.php in Schema.org Metatag 8

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

File

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

namespace Drupal\schema_book\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'image' 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_image",
 *   label = @Translation("image"),
 *   description = @Translation("The primary image for this item."),
 *   name = "image",
 *   group = "schema_book",
 *   weight = 2,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaBookImage extends SchemaImageBase {

}

Classes

Namesort descending Description
SchemaBookImage Provides a plugin for the 'image' meta tag.