You are here

SchemaRecipeNutrition.php in Schema.org Metatag 8.2

Same filename and directory in other branches
  1. 8 schema_recipe/src/Plugin/metatag/Tag/SchemaRecipeNutrition.php

File

schema_recipe/src/Plugin/metatag/Tag/SchemaRecipeNutrition.php
View source
<?php

namespace Drupal\schema_recipe\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'nutrition' 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_recipe_nutrition",
 *   label = @Translation("nutrition"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. The nutrition for this item."),
 *   name = "nutrition",
 *   group = "schema_recipe",
 *   weight = 8,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "nutrition_information",
 *   tree_parent = {
 *     "NutritionInformation",
 *   },
 *   tree_depth = 0,
 * )
 */
class SchemaRecipeNutrition extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaRecipeNutrition Provides a plugin for the 'nutrition' meta tag.