function LayoutBuilderEntityViewDisplay::calculateDependencies

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::calculateDependencies()
  2. 10 core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::calculateDependencies()
  3. 11.x core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::calculateDependencies()

Overrides EntityDisplayBase::calculateDependencies

File

core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php, line 383

Class

LayoutBuilderEntityViewDisplay
Provides an entity view display entity that has a layout.

Namespace

Drupal\layout_builder\Entity

Code

public function calculateDependencies() {
    parent::calculateDependencies();
    foreach ($this->getSections() as $delta => $section) {
        $this->calculatePluginDependencies($section->getLayout());
        foreach ($section->getComponents() as $uuid => $component) {
            $this->calculatePluginDependencies($component->getPlugin());
        }
    }
    return $this;
}

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