You are here

public function EntityFieldStorageConfig::rollback in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/migrate/destination/EntityFieldStorageConfig.php \Drupal\migrate\Plugin\migrate\destination\EntityFieldStorageConfig::rollback()
  2. 10 core/modules/migrate/src/Plugin/migrate/destination/EntityFieldStorageConfig.php \Drupal\migrate\Plugin\migrate\destination\EntityFieldStorageConfig::rollback()

Delete the specified destination object from the target Drupal.

Parameters

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

Overrides EntityConfigBase::rollback

File

core/modules/migrate/src/Plugin/migrate/destination/EntityFieldStorageConfig.php, line 71

Class

EntityFieldStorageConfig
Provides destination plugin for field_storage_config configuration entities.

Namespace

Drupal\migrate\Plugin\migrate\destination

Code

public function rollback(array $destination_identifier) {
  if ($this
    ->isTranslationDestination()) {
    $language = $destination_identifier['langcode'];
    unset($destination_identifier['langcode']);
    $destination_identifier = [
      implode('.', $destination_identifier),
      'langcode' => $language,
    ];
  }
  else {
    $destination_identifier = [
      implode('.', $destination_identifier),
    ];
  }
  parent::rollback($destination_identifier);
}