SchemaPersonBirthDate.php in Schema.org Metatag 8
Same filename and directory in other branches
Namespace
Drupal\schema_person\Plugin\metatag\TagFile
schema_person/src/Plugin/metatag/Tag/SchemaPersonBirthDate.phpView source
<?php
namespace Drupal\schema_person\Plugin\metatag\Tag;
use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaDateBase;
/**
 * Provides a plugin for the 'schema_person_birth_date' 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_person_birth_date",
 *   label = @Translation("birthDate"),
 *   description = @Translation("Date of birth of the person in ISO 8601 format, 2017-12-31."),
 *   name = "birthDate",
 *   group = "schema_person",
 *   weight = 0,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaPersonBirthDate extends SchemaDateBase {
  /**
   * Generate a form element for this meta tag.
   *
   * We need multiple values, so create a tree of values and
   * stored the serialized value as a string.
   */
  public function form(array $element = []) {
    $form = parent::form($element);
    return $form;
  }
}Classes
| 
            Name | 
                  Description | 
|---|---|
| SchemaPersonBirthDate | Provides a plugin for the 'schema_person_birth_date' meta tag. |