class LayoutEntityDisplayNormalizer

Same name and namespace in other branches
  1. 8.9.x core/modules/layout_builder/src/Normalizer/LayoutEntityDisplayNormalizer.php \Drupal\layout_builder\Normalizer\LayoutEntityDisplayNormalizer
  2. 10 core/modules/layout_builder/src/Normalizer/LayoutEntityDisplayNormalizer.php \Drupal\layout_builder\Normalizer\LayoutEntityDisplayNormalizer
  3. 11.x core/modules/layout_builder/src/Normalizer/LayoutEntityDisplayNormalizer.php \Drupal\layout_builder\Normalizer\LayoutEntityDisplayNormalizer

Normalizes/denormalizes LayoutEntityDisplay objects into an array structure.

@internal Tagged services are internal.

Hierarchy

Expanded class hierarchy of LayoutEntityDisplayNormalizer

1 file declares its use of LayoutEntityDisplayNormalizer
LayoutBuilderServiceProvider.php in core/modules/layout_builder/src/LayoutBuilderServiceProvider.php

File

core/modules/layout_builder/src/Normalizer/LayoutEntityDisplayNormalizer.php, line 14

Namespace

Drupal\layout_builder\Normalizer
View source
class LayoutEntityDisplayNormalizer extends ConfigEntityNormalizer {
    
    /**
     * {@inheritdoc}
     */
    protected $supportedInterfaceOrClass = LayoutEntityDisplayInterface::class;
    
    /**
     * {@inheritdoc}
     */
    protected static function getDataWithoutInternals(array $data) {
        $data = parent::getDataWithoutInternals($data);
        // Do not expose the actual layout sections in normalization.
        // @todo Determine what to expose here in
        //   https://www.drupal.org/node/2942975.
        unset($data['third_party_settings']['layout_builder']['sections']);
        return $data;
    }
    
    /**
     * {@inheritdoc}
     */
    public function hasCacheableSupportsMethod() : bool {
        return TRUE;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
ConfigEntityNormalizer::denormalize public function Overrides EntityNormalizer::denormalize
ConfigEntityNormalizer::normalize public function Overrides ComplexDataNormalizer::normalize
EntityNormalizer::__construct public function Constructs an EntityNormalizer object.
FieldableEntityNormalizerTrait::$entityFieldManager protected property The entity field manager.
FieldableEntityNormalizerTrait::$entityTypeManager protected property The entity type manager. 1
FieldableEntityNormalizerTrait::$entityTypeRepository protected property The entity type repository.
FieldableEntityNormalizerTrait::constructValue protected function Build the field item value using the incoming data. 7
FieldableEntityNormalizerTrait::denormalizeFieldData protected function Denormalizes entity data by denormalizing each field individually.
FieldableEntityNormalizerTrait::determineEntityTypeId protected function Determines the entity type ID to denormalize as.
FieldableEntityNormalizerTrait::extractBundleData protected function Denormalizes the bundle property so entity creation can use it.
FieldableEntityNormalizerTrait::getEntityFieldManager protected function Returns the entity field manager.
FieldableEntityNormalizerTrait::getEntityTypeDefinition protected function Gets the entity type definition.
FieldableEntityNormalizerTrait::getEntityTypeManager protected function Returns the entity type manager.
FieldableEntityNormalizerTrait::getEntityTypeRepository protected function Returns the entity type repository.
LayoutEntityDisplayNormalizer::$supportedInterfaceOrClass protected property The interface or class that this Normalizer supports. Overrides ConfigEntityNormalizer::$supportedInterfaceOrClass
LayoutEntityDisplayNormalizer::getDataWithoutInternals protected static function Gets the given data without the internal implementation details. Overrides ConfigEntityNormalizer::getDataWithoutInternals
LayoutEntityDisplayNormalizer::hasCacheableSupportsMethod public function Overrides ComplexDataNormalizer::hasCacheableSupportsMethod
NormalizerBase::$format protected property List of formats which supports (de-)normalization. 3
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 1
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() 1
NormalizerBase::supportsNormalization public function 1

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