public function MigrateMapDeleteEvent::__construct in Drupal 9
Same name and namespace in other branches
- 8 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\EventCode
public function __construct(MigrateIdMapInterface $map, array $source_id) {
$this->map = $map;
$this->sourceId = $source_id;
}