You are here

public function MigrateMapDeleteEvent::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Event/MigrateMapDeleteEvent.php \Drupal\migrate\Event\MigrateMapDeleteEvent::__construct()
  2. 9 core/modules/migrate/src/Event/MigrateMapDeleteEvent.php \Drupal\migrate\Event\MigrateMapDeleteEvent::__construct()

Constructs a migration map delete event object.

Parameters

\Drupal\migrate\Plugin\MigrateIdMapInterface $map: Map plugin.

array $source_id: Array of source ID fields representing the object being deleted from the map.

File

core/modules/migrate/src/Event/MigrateMapDeleteEvent.php, line 35

Class

MigrateMapDeleteEvent
Wraps a migrate map delete event for event listeners.

Namespace

Drupal\migrate\Event

Code

public function __construct(MigrateIdMapInterface $map, array $source_id) {
  $this->map = $map;
  $this->sourceId = $source_id;
}