You are here

public static function EncryptedFieldStorageItem::propertyDefinitions in Field Encryption 3.0.x

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/EncryptedFieldStorageItem.php, line 25

Class

EncryptedFieldStorageItem
Plugin implementation of the 'encrypted_field_storage' field type.

Namespace

Drupal\field_encrypt\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties = [];
  $properties['value'] = DataDefinition::create('string')
    ->setLabel(new TranslatableMarkup('Encrypted data'));
  $properties['encryption_profile'] = DataDefinition::create('string')
    ->setLabel(new TranslatableMarkup('Encryption profile'));
  $properties['decrypted_value'] = DataDefinition::create('any')
    ->setLabel(new TranslatableMarkup('Decrypted data'))
    ->setComputed(TRUE)
    ->setClass('\\Drupal\\field_encrypt\\EncryptedFieldComputedProperty');
  return $properties;
}