You are here

SchemaMetatagTestAction.php in Schema.org Metatag 8.2

File

tests/modules/schema_metatag_test/src/Plugin/metatag/Tag/SchemaMetatagTestAction.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_action",
 *   label = @Translation("Schema Metatag Test Action"),
 *   name = "action",
 *   description = @Translation("Test element"),
 *   group = "schema_metatag_test_group",
 *   weight = 0,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "action",
 *   tree_parent = {
 *     "Action",
 *   },
 *   tree_depth = -1,
 * )
 */
class SchemaMetatagTestAction extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaMetatagTestAction A metatag tag for testing.