function LayoutEntityHelperTrait::getInlineBlockRevisionIdsInSections

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

Gets revision IDs for layout sections.

Parameters

\Drupal\layout_builder\Section[] $sections: The layout sections.

Return value

int[] The revision IDs.

2 calls to LayoutEntityHelperTrait::getInlineBlockRevisionIdsInSections()
InlineBlockEntityOperations::getRemovedBlockIds in core/modules/layout_builder/src/InlineBlockEntityOperations.php
Gets the IDs of the inline blocks that were removed.
SetInlineBlockDependency::isBlockRevisionUsedInEntity in core/modules/layout_builder/src/EventSubscriber/SetInlineBlockDependency.php
Determines if a block content revision is used in an entity.

File

core/modules/layout_builder/src/LayoutEntityHelperTrait.php, line 49

Class

LayoutEntityHelperTrait
Methods to help with entities using the layout builder.

Namespace

Drupal\layout_builder

Code

protected function getInlineBlockRevisionIdsInSections(array $sections) {
    $revision_ids = [];
    foreach ($this->getInlineBlockComponents($sections) as $component) {
        $configuration = $component->getPlugin()
            ->getConfiguration();
        if (!empty($configuration['block_revision_id'])) {
            $revision_ids[] = $configuration['block_revision_id'];
        }
    }
    return $revision_ids;
}

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