You are here

SchemaArticleAuthor.php in Schema.org Metatag 8.2

Same filename and directory in other branches
  1. 8 schema_article/src/Plugin/metatag/Tag/SchemaArticleAuthor.php

File

schema_article/src/Plugin/metatag/Tag/SchemaArticleAuthor.php
View source
<?php

namespace Drupal\schema_article\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'author' 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_author",
 *   label = @Translation("author"),
 *   description = @Translation("REQUIRED BY GOOGLE. Author of the article."),
 *   name = "author",
 *   group = "schema_article",
 *   weight = 5,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE,
 *   property_type = "organization",
 *   tree_parent = {
 *     "Person",
 *     "Organization",
 *   },
 *   tree_depth = 0,
 * )
 */
class SchemaArticleAuthor extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaArticleAuthor Provides a plugin for the 'author' meta tag.