You are here

SchemaMetatagTestClip.php in Schema.org Metatag 8.2

File

tests/modules/schema_metatag_test/src/Plugin/metatag/Tag/SchemaMetatagTestClip.php
View source
<?php

namespace Drupal\schema_metatag_test\Plugin\metatag\Tag;

use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;

/**
 * A metatag tag for testing.
 *
 * @MetatagTag(
 *   id = "schema_metatag_test_clip",
 *   label = @Translation("Schema Metatag Test Clip"),
 *   name = "clip",
 *   description = @Translation("Test element"),
 *   group = "schema_metatag_test_group",
 *   weight = 0,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "clip",
 *   tree_parent = {
 *     "Clip",
 *   },
 *   tree_depth = -1,
 * )
 */
class SchemaMetatagTestClip extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaMetatagTestClip A metatag tag for testing.