function InlineBlockEntityOperations::handlePreSave

Same name and namespace in other branches
  1. 8.9.x core/modules/layout_builder/src/InlineBlockEntityOperations.php \Drupal\layout_builder\InlineBlockEntityOperations::handlePreSave()
  2. 10 core/modules/layout_builder/src/InlineBlockEntityOperations.php \Drupal\layout_builder\InlineBlockEntityOperations::handlePreSave()
  3. 11.x core/modules/layout_builder/src/InlineBlockEntityOperations.php \Drupal\layout_builder\InlineBlockEntityOperations::handlePreSave()

Handles saving a parent entity.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The parent entity.

File

core/modules/layout_builder/src/InlineBlockEntityOperations.php, line 148

Class

InlineBlockEntityOperations
Defines a class for reacting to entity events related to Inline Blocks.

Namespace

Drupal\layout_builder

Code

public function handlePreSave(EntityInterface $entity) {
    if (!$this->isLayoutCompatibleEntity($entity)) {
        return;
    }
    $duplicate_blocks = FALSE;
    if ($sections = $this->getEntitySections($entity)) {
        if ($this->originalEntityUsesDefaultStorage($entity)) {
            // This is a new override from a default and the blocks need to be
            // duplicated.
            $duplicate_blocks = TRUE;
        }
        // Since multiple parent entity revisions may reference common block
        // revisions, when a block is modified, it must always result in the
        // creation of a new block revision.
        $new_revision = $entity instanceof RevisionableInterface;
        foreach ($this->getInlineBlockComponents($sections) as $component) {
            $this->saveInlineBlockComponent($entity, $component, $new_revision, $duplicate_blocks);
        }
    }
    $this->removeUnusedForEntityOnSave($entity);
}

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