SchemaMetatagTestAction.php in Schema.org Metatag 8.2
Same filename and directory in other branches
File
tests/modules/schema_metatag_test/src/Plugin/metatag/Tag/SchemaMetatagTestAction.phpView 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
Name | Description |
---|---|
SchemaMetatagTestAction | A metatag tag for testing. |