function EmptySource::calculateDependencies

Same name in other branches
  1. 8.9.x core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php \Drupal\migrate_drupal\Plugin\migrate\source\EmptySource::calculateDependencies()
  2. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php \Drupal\migrate_drupal\Plugin\migrate\source\EmptySource::calculateDependencies()
  3. 11.x core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php \Drupal\migrate_drupal\Plugin\migrate\source\EmptySource::calculateDependencies()

Overrides DependentPluginInterface::calculateDependencies

File

core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php, line 62

Class

EmptySource
Source returning an empty row with Drupal specific config dependencies.

Namespace

Drupal\migrate_drupal\Plugin\migrate\source

Code

public function calculateDependencies() {
    // The empty source plugin supports the entity_type constant.
    if (isset($this->configuration['constants']['entity_type'])) {
        $this->addDependency('module', $this->entityTypeManager
            ->getDefinition($this->configuration['constants']['entity_type'])
            ->getProvider());
    }
    return $this->dependencies;
}

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