You are here

License.php in Metatag 8

File

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

namespace Drupal\metatag_dc_advanced\Plugin\metatag\Tag;

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

/**
 * The Dublin Core "license" meta tag.
 *
 * @MetatagTag(
 *   id = "dcterms_license",
 *   label = @Translation("License"),
 *   description = @Translation("A legal document giving official permission to do something with the resource."),
 *   name = "dcterms.license",
 *   group = "dublin_core_advanced",
 *   weight = 6,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class License extends MetaNameBase {

}

Classes

Namesort descending Description
License The Dublin Core "license" meta tag.