diff modules/contrib/migrate_plus/src/Event/MigrateEvents.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
line wrap: on
line diff
--- a/modules/contrib/migrate_plus/src/Event/MigrateEvents.php	Thu Feb 28 13:11:55 2019 +0000
+++ b/modules/contrib/migrate_plus/src/Event/MigrateEvents.php	Thu May 09 15:34:47 2019 +0100
@@ -27,4 +27,17 @@
    */
   const PREPARE_ROW = 'migrate_plus.prepare_row';
 
+  /**
+   * Name of the event fired when a source item is missing.
+   *
+   * This event allows modules to perform an action whenever a specific item is
+   * missing from the source. The event listener method receives a
+   * \Drupal\migrate\Event\MigrateRowDeleteEvent instance.
+   *
+   * @Event
+   *
+   * @see \Drupal\migrate\Event\MigrateRowDeleteEvent
+   */
+  const MISSING_SOURCE_ITEM = 'migrate_plus.missing_source_item';
+
 }