Description.php in Metatag 8
Namespace
Drupal\metatag_dc\Plugin\metatag\TagFile
metatag_dc/src/Plugin/metatag/Tag/Description.phpView source
<?php
namespace Drupal\metatag_dc\Plugin\metatag\Tag;
use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
/**
* The Dublin Core "Description" meta tag.
*
* @MetatagTag(
* id = "dcterms_description",
* label = @Translation("Description"),
* description = @Translation("An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource."),
* name = "dcterms.description",
* group = "dublin_core",
* weight = 4,
* type = "label",
* secure = FALSE,
* multiple = FALSE
* )
*/
class Description extends MetaNameBase {
}
Classes
Name | Description |
---|---|
Description | The Dublin Core "Description" meta tag. |