RelationshipNormalizer.php

Same filename and directory in other branches
  1. 9 core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php
  2. 8.9.x core/modules/jsonapi/src/Normalizer/RelationshipNormalizer.php
  3. 11.x 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}
     */
    public function normalize($object, $format = NULL, array $context = []) : array|string|int|float|bool|\ArrayObject|null {
        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(),
        ]);
    }
    
    /**
     * {@inheritdoc}
     */
    public function hasCacheableSupportsMethod() : bool {
        @trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use getSupportedTypes() instead. See https://www.drupal.org/node/3359695', E_USER_DEPRECATED);
        return TRUE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getSupportedTypes(?string $format) : array {
        return [
            Relationship::class => TRUE,
        ];
    }

}

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.