You are here

MetatagTestTag.php in Metatag 8

File

tests/modules/metatag_test_tag/src/Plugin/metatag/Tag/MetatagTestTag.php
View source
<?php

namespace Drupal\metatag_test_tag\Plugin\metatag\Tag;

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

/**
 * A metatag tag for testing.
 *
 * @MetatagTag(
 *   id = "metatag_test_tag",
 *   label = @Translation("Metatag Test"),
 *   description = @Translation("A metatag tag for testing."),
 *   name = "metatag_test_tag",
 *   group = "basic",
 *   weight = 3,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class MetatagTestTag extends MetaNameBase {

}

Classes

Namesort descending Description
MetatagTestTag A metatag tag for testing.