You are here

AbstractTag.php in Metatag 8

File

metatag_dc_advanced/src/Plugin/metatag/Tag/AbstractTag.php
View source
<?php

namespace Drupal\metatag_dc_advanced\Plugin\metatag\Tag;

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

/**
 * The Dublin Core "Abstract" meta tag.
 *
 * @MetatagTag(
 *   id = "dcterms_abstract",
 *   label = @Translation("Abstract"),
 *   description = @Translation("A summary of the resource."),
 *   name = "dcterms.abstract",
 *   group = "dublin_core_advanced",
 *   weight = 6,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class AbstractTag extends MetaNameBase {

}

Classes

Namesort descending Description
AbstractTag The Dublin Core "Abstract" meta tag.