You are here

public static function D6NodeDeriver::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/migrate/D6NodeDeriver.php \Drupal\node\Plugin\migrate\D6NodeDeriver::create()
  2. 9 core/modules/node/src/Plugin/migrate/D6NodeDeriver.php \Drupal\node\Plugin\migrate\D6NodeDeriver::create()

File

core/modules/node/src/Plugin/migrate/D6NodeDeriver.php, line 59

Class

D6NodeDeriver
Deriver for Drupal 6 node and node revision migrations based on node types.

Namespace

Drupal\node\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'));
}