You are here

public function FieldLayoutEntityDisplayTrait::calculateDependencies in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/field_layout/src/Entity/FieldLayoutEntityDisplayTrait.php \Drupal\field_layout\Entity\FieldLayoutEntityDisplayTrait::calculateDependencies()

Overrides \Drupal\Core\Entity\EntityDisplayBase::calculateDependencies().

Ensure the plugin dependencies are included. Once layouts are no longer stored as third party settings, this will be handled by the code in \Drupal\Core\Config\Entity\ConfigEntityBase::calculateDependencies() that handles \Drupal\Core\Entity\EntityWithPluginCollectionInterface.

File

core/modules/field_layout/src/Entity/FieldLayoutEntityDisplayTrait.php, line 144

Class

FieldLayoutEntityDisplayTrait
Provides shared code for entity displays.

Namespace

Drupal\field_layout\Entity

Code

public function calculateDependencies() {
  parent::calculateDependencies();

  // This can be called during uninstallation, so check for a valid ID first.
  if ($this
    ->getLayoutId()) {
    $this
      ->calculatePluginDependencies($this
      ->getLayout());
  }
  return $this;
}