You are here

public function Tour::calculateDependencies in Drupal 9

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

Calculates dependencies and stores them in the dependency property.

Return value

$this

Overrides ConfigEntityBase::calculateDependencies

See also

\Drupal\Core\Config\Entity\ConfigDependencyManager

File

core/modules/tour/src/Entity/Tour.php, line 180

Class

Tour
Defines the configured tour entity.

Namespace

Drupal\tour\Entity

Code

public function calculateDependencies() {
  parent::calculateDependencies();
  foreach ($this->tipsCollection as $instance) {
    $definition = $instance
      ->getPluginDefinition();
    $this
      ->addDependency('module', $definition['provider']);
  }
  $this
    ->addDependency('module', $this->module);
  return $this;
}