You are here

public static function D7EckDeriver::create in Entity Construction Kit (ECK) 8

Creates a new class instance.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the fetcher.

string $base_plugin_id: The base plugin ID for the plugin ID.

Return value

static Returns an instance of this fetcher.

Overrides ContainerDeriverInterface::create

File

src/Plugin/migrate/D7EckDeriver.php, line 58

Class

D7EckDeriver
Deriver for Drupal 7 ECK.

Namespace

Drupal\eck\Plugin\migrate

Code

public static function create(ContainerInterface $container, $base_plugin_id) {

  // Translations don't make sense unless we have content_translation.
  return new static($base_plugin_id, $container
    ->get('module_handler')
    ->moduleExists('content_translation'), $container
    ->get('migrate_drupal.field_discovery'));
}