class MigrateMapSaveEvent in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Event/MigrateMapSaveEvent.php \Drupal\migrate\Event\MigrateMapSaveEvent
 - 9 core/modules/migrate/src/Event/MigrateMapSaveEvent.php \Drupal\migrate\Event\MigrateMapSaveEvent
 
Wraps a migrate map save event for event listeners.
Hierarchy
- class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event
- class \Drupal\migrate\Event\MigrateMapSaveEvent
 
 
Expanded class hierarchy of MigrateMapSaveEvent
3 files declare their use of MigrateMapSaveEvent
- MigrateEventsTest.php in core/
modules/ migrate/ tests/ src/ Kernel/ MigrateEventsTest.php  - MigrateUpgradeImportBatch.php in core/
modules/ migrate_drupal_ui/ src/ Batch/ MigrateUpgradeImportBatch.php  - Sql.php in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php  
File
- core/
modules/ migrate/ src/ Event/ MigrateMapSaveEvent.php, line 11  
Namespace
Drupal\migrate\EventView source
class MigrateMapSaveEvent extends Event {
  /**
   * Map plugin.
   *
   * @var \Drupal\migrate\Plugin\MigrateIdMapInterface
   */
  protected $map;
  /**
   * Array of fields being saved to the map, keyed by field name.
   *
   * @var array
   */
  protected $fields;
  /**
   * Constructs a migration map event object.
   *
   * @param \Drupal\migrate\Plugin\MigrateIdMapInterface $map
   *   Map plugin.
   * @param array $fields
   *   Array of fields being saved to the map.
   */
  public function __construct(MigrateIdMapInterface $map, array $fields) {
    $this->map = $map;
    $this->fields = $fields;
  }
  /**
   * Gets the map plugin.
   *
   * @return \Drupal\migrate\Plugin\MigrateIdMapInterface
   *   The map plugin that caused the event to fire.
   */
  public function getMap() {
    return $this->map;
  }
  /**
   * Gets the fields about to be saved to the map.
   *
   * @return array
   *   Array of map fields, keyed by field name.
   */
  public function getFields() {
    return $this->fields;
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            MigrateMapSaveEvent:: | 
                  protected | property | Array of fields being saved to the map, keyed by field name. | |
| 
            MigrateMapSaveEvent:: | 
                  protected | property | Map plugin. | |
| 
            MigrateMapSaveEvent:: | 
                  public | function | Gets the fields about to be saved to the map. | |
| 
            MigrateMapSaveEvent:: | 
                  public | function | Gets the map plugin. | |
| 
            MigrateMapSaveEvent:: | 
                  public | function | Constructs a migration map event object. |