function Entity::rollback
Overrides DestinationBase::rollback
3 calls to Entity::rollback()
- EntityConfigBase::rollback in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityConfigBase.php 
- Delete the specified destination object from the target Drupal.
- EntityContentBase::rollback in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentBase.php 
- Delete the specified destination object from the target Drupal.
- EntityContentComplete::rollback in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentComplete.php 
- Delete the specified destination object from the target Drupal.
2 methods override Entity::rollback()
- EntityConfigBase::rollback in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityConfigBase.php 
- Delete the specified destination object from the target Drupal.
- EntityContentBase::rollback in core/modules/ migrate/ src/ Plugin/ migrate/ destination/ EntityContentBase.php 
- Delete the specified destination object from the target Drupal.
File
- 
              core/modules/ migrate/ src/ Plugin/ migrate/ destination/ Entity.php, line 248 
Class
- Entity
- Provides a generic destination to import entities.
Namespace
Drupal\migrate\Plugin\migrate\destinationCode
public function rollback(array $destination_identifier) {
  // Delete the specified entity from Drupal if it exists.
  $entity = $this->storage
    ->load(reset($destination_identifier));
  if ($entity) {
    if ($entity instanceof ContentEntityInterface) {
      $entity->setSyncing(TRUE);
    }
    $entity->delete();
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
