RelationshipNormalizer.php

Same filename and directory in other branches
  1. 10 core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php
  2. 11.x core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php
  3. 9 core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php

Namespace

Drupal\jsonapi\Normalizer

File

core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php

View source
<?php

namespace Drupal\jsonapi\Normalizer;

use Drupal\jsonapi\JsonApiResource\Relationship;
use Drupal\jsonapi\Normalizer\Value\CacheableNormalization;

/**
 * Normalizes a JSON:API relationship object.
 *
 * @internal
 */
class RelationshipNormalizer extends NormalizerBase {
  
  /**
   * {@inheritdoc}
   */
  protected $supportedInterfaceOrClass = Relationship::class;
  
  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) {
    assert($object instanceof Relationship);
    return CacheableNormalization::aggregate([
      'data' => $this->serializer
        ->normalize($object->getData(), $format, $context),
      'links' => $this->serializer
        ->normalize($object->getLinks(), $format, $context)
        ->omitIfEmpty(),
      'meta' => CacheableNormalization::permanent($object->getMeta())
        ->omitIfEmpty(),
    ]);
  }

}

Classes

Title Deprecated Summary
RelationshipNormalizer Normalizes a JSON:API relationship object.

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