You are here

public static function PasswordItem::propertyDefinitions in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/Plugin/Field/FieldType/PasswordItem.php \Drupal\Core\Field\Plugin\Field\FieldType\PasswordItem::propertyDefinitions()
  2. 10 core/lib/Drupal/Core/Field/Plugin/Field/FieldType/PasswordItem.php \Drupal\Core\Field\Plugin\Field\FieldType\PasswordItem::propertyDefinitions()

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 StringItemBase::propertyDefinitions

See also

\Drupal\Core\Field\BaseFieldDefinition

File

core/lib/Drupal/Core/Field/Plugin/Field/FieldType/PasswordItem.php, line 25

Class

PasswordItem
Defines the 'password' entity field type.

Namespace

Drupal\Core\Field\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['value'] = DataDefinition::create('string')
    ->setLabel(new TranslatableMarkup('The hashed password'))
    ->setSetting('case_sensitive', TRUE);
  $properties['existing'] = DataDefinition::create('string')
    ->setLabel(new TranslatableMarkup('Existing password'));
  $properties['pre_hashed'] = DataDefinition::create('boolean')
    ->setLabel(new TranslatableMarkup('Determines if a password needs hashing'));
  return $properties;
}