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

Breadcrumb

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

function EntityExists::create

Overrides ContainerFactoryPluginInterface::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']));
}
RSS feed
Powered by Drupal