function D7NodeDeriver::__construct

Same name and namespace in other branches
  1. 8.9.x core/modules/node/src/Plugin/migrate/D7NodeDeriver.php \Drupal\node\Plugin\migrate\D7NodeDeriver::__construct()
  2. 10 core/modules/node/src/Plugin/migrate/D7NodeDeriver.php \Drupal\node\Plugin\migrate\D7NodeDeriver::__construct()
  3. 11.x core/modules/node/src/Plugin/migrate/D7NodeDeriver.php \Drupal\node\Plugin\migrate\D7NodeDeriver::__construct()

D7NodeDeriver constructor.

Parameters

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

bool $translations: Whether or not to include translations.

\Drupal\migrate_drupal\FieldDiscoveryInterface $field_discovery: The migration field discovery service.

File

core/modules/node/src/Plugin/migrate/D7NodeDeriver.php, line 52

Class

D7NodeDeriver
Deriver for Drupal 7 node and node revision migrations based on node types.

Namespace

Drupal\node\Plugin\migrate

Code

public function __construct($base_plugin_id, $translations, FieldDiscoveryInterface $field_discovery) {
    $this->basePluginId = $base_plugin_id;
    $this->includeTranslations = $translations;
    $this->fieldDiscovery = $field_discovery;
}

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