You are here

public function DestinationBase::rollback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Plugin/migrate/destination/DestinationBase.php \Drupal\migrate\Plugin\migrate\destination\DestinationBase::rollback()

Delete the specified destination object from the target Drupal.

Parameters

array $destination_identifier: The ID of the destination object to delete.

Overrides MigrateDestinationInterface::rollback

1 method overrides DestinationBase::rollback()
Entity::rollback in core/modules/migrate/src/Plugin/migrate/destination/Entity.php
Delete the specified destination object from the target Drupal.

File

core/modules/migrate/src/Plugin/migrate/destination/DestinationBase.php, line 87
Contains \Drupal\migrate\Plugin\migrate\destination\DestinationBase.

Class

DestinationBase
Base class for migrate destination classes.

Namespace

Drupal\migrate\Plugin\migrate\destination

Code

public function rollback(array $destination_identifier) {

  // By default we do nothing.
}