You are here

protected function ViewfieldNormalizer::constructValue in Viewfield 8.3

Build the field item value using the incoming data.

Most normalizers that extend this class can simply use this method to construct the denormalized value without having to override denormalize() and reimplementing its validation logic or its call to set the field value.

It's recommended to not override this and instead provide a (de)normalizer at the DataType level.

Parameters

mixed $data: The incoming data for this field item.

array $context: The context passed into the Normalizer.

Return value

mixed The value to use in Entity::setValue().

Overrides EntityReferenceItemNormalizer::constructValue

File

src/Normalizer/ViewfieldNormalizer.php, line 20

Class

ViewfieldNormalizer
A normalizer to handle Viewfiled fields.

Namespace

Drupal\viewfield\Normalizer

Code

protected function constructValue($data, $context) {
  $value = parent::constructValue($data, $context);
  if ($value) {
    $value['display_id'] = $data['display_id'];
    $value['arguments'] = $data['arguments'];
    $value['items_to_display'] = $data['items_to_display'];
  }
  return $value;
}