You are here

SchemaArticleMainEntityOfPage.php in Schema.org Metatag 8

File

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

namespace Drupal\schema_article\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_article_main_entity_of_page' 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_main_entity_of_page",
 *   label = @Translation("mainEntityOfPage"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. The canonical URL of the article page. Specify mainEntityOfPage when the article is the primary topic of the article page."),
 *   name = "mainEntityOfPage",
 *   group = "schema_article",
 *   weight = 10,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaArticleMainEntityOfPage extends SchemaMainEntityOfPageBase {

}

Classes

Namesort descending Description
SchemaArticleMainEntityOfPage Provides a plugin for the 'schema_article_main_entity_of_page' meta tag.