public static function D7NodeDeriver::create in Drupal 10
Same name and namespace in other branches
- 8 core/modules/node/src/Plugin/migrate/D7NodeDeriver.php \Drupal\node\Plugin\migrate\D7NodeDeriver::create()
- 9 core/modules/node/src/Plugin/migrate/D7NodeDeriver.php \Drupal\node\Plugin\migrate\D7NodeDeriver::create()
File
- core/
modules/ node/ src/ Plugin/ migrate/ D7NodeDeriver.php, line 59
Class
- D7NodeDeriver
- Deriver for Drupal 7 node and node revision migrations based on node types.
Namespace
Drupal\node\Plugin\migrateCode
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'));
}