Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EmptySource.php

function 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;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal