You are here

SchemaWebSiteInLanguage.php in Schema.org Metatag 8

File

schema_web_site/src/Plugin/metatag/Tag/SchemaWebSiteInLanguage.php
View source
<?php

namespace Drupal\schema_web_site\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_web_site_in_language' 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_web_site_in_language",
 *   label = @Translation("inLanguage"),
 *   description = @Translation("The language of the content"),
 *   name = "inLanguage",
 *   group = "schema_web_site",
 *   weight = 11,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaWebSiteInLanguage extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaWebSiteInLanguage Provides a plugin for the 'schema_web_site_in_language' meta tag.