function EntityExists::create

Instantiates a new instance of the implementing class using autowiring.

Return value

static

Overrides PluginBase::create

File

core/modules/migrate/src/Plugin/migrate/process/EntityExists.php, line 56

Class

EntityExists
This plugin checks if a given entity exists.

Namespace

Drupal\migrate\Plugin\migrate\process

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition, ?MigrationInterface $migration = NULL) {
  return new static($configuration, $plugin_id, $plugin_definition, $container->get('entity_type.manager')
    ->getStorage($configuration['entity_type']));
}

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