You are here

public static function GpgKeyItem::propertyDefinitions in Mailhandler 8

Defines field item properties.

Properties that are required to constitute a valid, non-empty item should be denoted with \Drupal\Core\TypedData\DataDefinition::setRequired().

Return value

\Drupal\Core\TypedData\DataDefinitionInterface[] An array of property definitions of contained properties, keyed by property name.

Overrides FieldItemInterface::propertyDefinitions

See also

\Drupal\Core\Field\BaseFieldDefinition

File

src/Plugin/Field/FieldType/GpgKeyItem.php, line 64

Class

GpgKeyItem
Plugin implementation of the 'mailhandler_gpg' field type.

Namespace

Drupal\mailhandler\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['public_key'] = DataDefinition::create('string')
    ->setLabel(t('Public key'))
    ->setDescription(t('GPG Public key.'));
  $properties['fingerprint'] = DataDefinition::create('string')
    ->setLabel(t('Fingerprint'))
    ->setDescription(t('Fingerprint of the corresponding public key. This property will be automatically populated.'));
  return $properties;
}