You are here

BookISBN.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/BookISBN.php
View source
<?php

namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;

/**
 * Provides a plugin for the 'book:isbn' meta tag.
 *
 * @MetatagTag(
 *   id = "book_isbn",
 *   label = @Translation("ISBN"),
 *   description = @Translation("The Book's ISBN"),
 *   name = "book:isbn",
 *   group = "open_graph",
 *   weight = 36,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class BookISBN extends MetaPropertyBase {

}

Classes

Namesort descending Description
BookISBN Provides a plugin for the 'book:isbn' meta tag.