function MultiValueTestItem::propertyDefinitions

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/entity_test_update/src/Plugin/Field/FieldType/MultiValueTestItem.php \Drupal\entity_test_update\Plugin\Field\FieldType\MultiValueTestItem::propertyDefinitions()
  2. 10 core/modules/system/tests/modules/entity_test_update/src/Plugin/Field/FieldType/MultiValueTestItem.php \Drupal\entity_test_update\Plugin\Field\FieldType\MultiValueTestItem::propertyDefinitions()
  3. 8.9.x core/modules/system/tests/modules/entity_test_update/src/Plugin/Field/FieldType/MultiValueTestItem.php \Drupal\entity_test_update\Plugin\Field\FieldType\MultiValueTestItem::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 FieldItemInterface::propertyDefinitions

File

core/modules/system/tests/modules/entity_test_update/src/Plugin/Field/FieldType/MultiValueTestItem.php, line 23

Class

MultiValueTestItem
Defines the 'multi_value_test' field type.

Namespace

Drupal\entity_test_update\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['value1'] = DataDefinition::create('string')->setLabel(t('First value'));
  $properties['value2'] = DataDefinition::create('string')->setLabel(t('Second value'));
  return $properties;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.