You are here

SchemaPersonImage.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_person/src/Plugin/metatag/Tag/SchemaPersonImage.php

File

schema_person/src/Plugin/metatag/Tag/SchemaPersonImage.php
View source
<?php

namespace Drupal\schema_person\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_person_image' 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_image",
 *   label = @Translation("image"),
 *   description = @Translation("The primary image for the person."),
 *   name = "image",
 *   group = "schema_person",
 *   weight = 1,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaPersonImage extends SchemaImageBase {

  /**
   * Generate a form element for this meta tag.
   */
  public function form(array $element = []) {
    $form = parent::form($element);
    $form['#attributes']['placeholder'] = '[node:field_image:url]';
    return $form;
  }

}

Classes

Namesort descending Description
SchemaPersonImage Provides a plugin for the 'schema_person_image' meta tag.