You are here

class BlockContentNormalizer in Fixed Block Content 8

Block content normalizer to store as fixed content block default value.

Hierarchy

Expanded class hierarchy of BlockContentNormalizer

1 string reference to 'BlockContentNormalizer'
fixed_block_content.services.yml in ./fixed_block_content.services.yml
fixed_block_content.services.yml
1 service uses BlockContentNormalizer
fixed_block_content.block_content in ./fixed_block_content.services.yml
Drupal\fixed_block_content\Normalizer\BlockContentNormalizer

File

src/Normalizer/BlockContentNormalizer.php, line 10

Namespace

Drupal\fixed_block_content\Normalizer
View source
class BlockContentNormalizer extends ContentEntityNormalizer {

  /**
   * The interface or class that this Normalizer supports.
   *
   * @var string
   */
  protected $supportedInterfaceOrClass = 'Drupal\\block_content\\Entity\\BlockContent';

  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) {
    $attributes = parent::normalize($object, $format, $context);
    if (isset($context['fixed_block_content'])) {

      // Remove local entity IDs.
      $ids = [
        'id',
        'revision_id',
        'uuid',
        'changed',
        'revision_created',
        'revision_user',
      ];
      foreach ($ids as $id) {
        unset($attributes[$id]);
      }
    }
    return $attributes;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BlockContentNormalizer::$supportedInterfaceOrClass protected property The interface or class that this Normalizer supports. Overrides ContentEntityNormalizer::$supportedInterfaceOrClass
BlockContentNormalizer::normalize public function Normalizes an object into a set of arrays/scalars. Overrides ContentEntityNormalizer::normalize
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
ContentEntityNormalizer::$deprecatedProperties protected property
ContentEntityNormalizer::$linkManager protected property The hypermedia link manager.
ContentEntityNormalizer::$moduleHandler protected property The module handler.
ContentEntityNormalizer::denormalize public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize().
ContentEntityNormalizer::getEntityUri protected function Constructs the entity URI. 1
ContentEntityNormalizer::getTypedDataIds protected function Gets the typed data IDs for a type URI.
ContentEntityNormalizer::__construct public function Constructs an ContentEntityNormalizer object. 1
DeprecatedServicePropertyTrait::__get public function Allows to access deprecated/removed properties.
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.
NormalizerBase::$format protected property List of formats which supports (de-)normalization. Overrides NormalizerBase::$format
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. Overrides NormalizerBase::checkFormat
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