Identifier.php in Metatag 8
Namespace
Drupal\metatag_dc\Plugin\metatag\TagFile
metatag_dc/src/Plugin/metatag/Tag/Identifier.phpView source
<?php
namespace Drupal\metatag_dc\Plugin\metatag\Tag;
use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
/**
* The Dublin Core "Identifier" meta tag.
*
* @MetatagTag(
* id = "dcterms_identifier",
* label = @Translation("Identifier"),
* description = @Translation("An unambiguous reference to the resource within a given context. Recommended best practice is to identify the resource by means of a string conforming to a formal identification system."),
* name = "dcterms.identifier",
* group = "dublin_core",
* weight = 10,
* type = "label",
* secure = FALSE,
* multiple = FALSE
* )
*/
class Identifier extends MetaNameBase {
}
Classes
Name | Description |
---|---|
Identifier | The Dublin Core "Identifier" meta tag. |