function MigrateMapDeleteEvent::__construct

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Event/MigrateMapDeleteEvent.php \Drupal\migrate\Event\MigrateMapDeleteEvent::__construct()
  2. 8.9.x core/modules/migrate/src/Event/MigrateMapDeleteEvent.php \Drupal\migrate\Event\MigrateMapDeleteEvent::__construct()
  3. 10 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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.