You are here

class LocalSequenceItemListNormalizer in Replication 8

Same name and namespace in other branches
  1. 8.2 src/Normalizer/LocalSequenceItemListNormalizer.php \Drupal\replication\Normalizer\LocalSequenceItemListNormalizer

Hierarchy

Expanded class hierarchy of LocalSequenceItemListNormalizer

File

src/Normalizer/LocalSequenceItemListNormalizer.php, line 8

Namespace

Drupal\replication\Normalizer
View source
class LocalSequenceItemListNormalizer extends NormalizerBase implements DenormalizerInterface {

  /**
   * @var string[]
   */
  protected $supportedInterfaceOrClass = [
    'Drupal\\multiversion\\Plugin\\Field\\FieldType\\LocalSequenceItemList',
  ];

  /**
   * @var string[]
   */
  protected $format = [
    'json',
  ];

  /**
   * {@inheritdoc}
   */
  public function normalize($field, $format = NULL, array $context = []) {
    return $field->id;
  }

  /**
   * {@inheritdoc}
   */
  public function denormalize($data, $class, $format = NULL, array $context = []) {
    return [
      [
        'id' => $data,
      ],
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
LocalSequenceItemListNormalizer::$format protected property Overrides NormalizerBase::$format
LocalSequenceItemListNormalizer::$supportedInterfaceOrClass protected property Overrides NormalizerBase::$supportedInterfaceOrClass
LocalSequenceItemListNormalizer::denormalize public function Denormalizes data back into an object of the given class.
LocalSequenceItemListNormalizer::normalize public function Normalizes an object into a set of arrays/scalars.
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 2
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() 1
NormalizerBase::supportsNormalization public function Checks whether the given class is supported for normalization by this normalizer. 1