function EntityNodeType::import

Overrides EntityConfigBase::import

File

core/modules/node/src/Plugin/migrate/destination/EntityNodeType.php, line 18

Class

EntityNodeType
Plugin annotation @MigrateDestination( id = "entity:node_type" )

Namespace

Drupal\node\Plugin\migrate\destination

Code

public function import(Row $row, array $old_destination_id_values = []) {
  $entity_ids = parent::import($row, $old_destination_id_values);
  if ($row->getDestinationProperty('create_body')) {
    $node_type = $this->storage
      ->load(reset($entity_ids));
    node_add_body_field($node_type, $row->getDestinationProperty('create_body_label'));
  }
  return $entity_ids;
}

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