function EntityContentComplete::updateEntity
Overrides EntityContentBase::updateEntity
1 call to EntityContentComplete::updateEntity()
- EntityContentComplete::getEntity in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentComplete.php 
- Gets the entity.
File
- 
              core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentComplete.php, line 118 
Class
- EntityContentComplete
- Provides a destination for migrating the entire entity revision table.
Namespace
Drupal\migrate\Plugin\migrate\destinationCode
protected function updateEntity(EntityInterface $entity, Row $row) {
  $entity = parent::updateEntity($entity, $row);
  // Always set the rollback action to delete. This is because the parent
  // updateEntity will set the rollback action to preserve for the original
  // language row, which is needed for the classic node migrations.
  $this->setRollbackAction($row->getIdMap(), MigrateIdMapInterface::ROLLBACK_DELETE);
  return $entity;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
