SchemaHowToTool.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_how_to\Plugin\metatag\TagFile
schema_how_to/src/Plugin/metatag/Tag/SchemaHowToTool.phpView source
<?php
namespace Drupal\schema_how_to\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaNameBase;
/**
* Provides a plugin for the 'schema_how_to_tool' meta tag.
*
* - 'id' should be a globally unique id.
* - 'name' should match the Schema.org element name.
* - 'group' should match the id of the group that defines the Schema.org type.
*
* @MetatagTag(
* id = "schema_how_to_tool",
* label = @Translation("tool"),
* description = @Translation("RECOMMENDED BY GOOGLE. An object used (but not consumed) when performing instructions or a direction."),
* name = "tool",
* group = "schema_how_to",
* weight = 10,
* type = "string",
* secure = FALSE,
* multiple = TRUE
* )
*/
class SchemaHowToTool extends SchemaNameBase {
}
Classes
Name | Description |
---|---|
SchemaHowToTool | Provides a plugin for the 'schema_how_to_tool' meta tag. |