You are here

Title.php in Metatag 8

File

metatag_dc/src/Plugin/metatag/Tag/Title.php
View source
<?php

namespace Drupal\metatag_dc\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;

/**
 * The Dublin Core "Title" meta tag.
 *
 * @MetatagTag(
 *   id = "dcterms_title",
 *   label = @Translation("Title"),
 *   description = @Translation("The name given to the resource."),
 *   name = "dcterms.title",
 *   group = "dublin_core",
 *   weight = 1,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class Title extends MetaNameBase {

}

Classes

Namesort descending Description
Title The Dublin Core "Title" meta tag.