public static function ComputedFloatItem::propertyDefinitions in Computed Field 3.x
Same name and namespace in other branches
- 8.2 src/Plugin/Field/FieldType/ComputedFloatItem.php \Drupal\computed_field\Plugin\Field\FieldType\ComputedFloatItem::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
See also
\Drupal\Core\Field\BaseFieldDefinition
File
- src/
Plugin/ Field/ FieldType/ ComputedFloatItem.php, line 27
Class
- ComputedFloatItem
- Plugin implementation of the 'computed_float' field type.
Namespace
Drupal\computed_field\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
// Prevent early t() calls by using the TranslatableMarkup.
$properties['value'] = DataDefinition::create('float')
->setLabel(new TranslatableMarkup('Float'))
->setRequired(TRUE);
return $properties;
}