You are here

public static function DimensionsItem::propertyDefinitions in Physical Fields 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/DimensionsItem.php, line 64

Class

DimensionsItem
Plugin implementation of the 'physical_dimensions' field type.

Namespace

Drupal\physical\Plugin\Field\FieldType

Code

public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
  $properties['length'] = DataDefinition::create('string')
    ->setLabel(t('Length'));
  $properties['width'] = DataDefinition::create('string')
    ->setLabel(t('Width'));
  $properties['height'] = DataDefinition::create('string')
    ->setLabel(t('Height'));
  $properties['unit'] = DataDefinition::create('string')
    ->setLabel(t('Unit'));
  return $properties;
}