Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MigrateRowDeleteEvent.php

class MigrateRowDeleteEvent

Wraps a row deletion event for event listeners.

Hierarchy

  • class \Symfony\Contracts\EventDispatcher\Event implements \Psr\EventDispatcher\StoppableEventInterface
    • class \Drupal\Component\EventDispatcher\Event extends \Symfony\Contracts\EventDispatcher\Event
      • class \Drupal\migrate\Event\MigrateRowDeleteEvent extends \Drupal\Component\EventDispatcher\Event

Expanded class hierarchy of MigrateRowDeleteEvent

2 files declare their use of MigrateRowDeleteEvent
MigrateExecutable.php in core/modules/migrate/src/MigrateExecutable.php
MigrateUpgradeImportBatch.php in core/modules/migrate_drupal_ui/src/Batch/MigrateUpgradeImportBatch.php

File

core/modules/migrate/src/Event/MigrateRowDeleteEvent.php, line 11

Namespace

Drupal\migrate\Event
View source
class MigrateRowDeleteEvent extends Event {
    
    /**
     * Migration entity.
     *
     * @var \Drupal\migrate\Plugin\MigrationInterface
     */
    protected $migration;
    
    /**
     * Values representing the destination ID.
     *
     * @var array
     */
    protected $destinationIdValues;
    
    /**
     * Constructs a row deletion event object.
     *
     * @param \Drupal\migrate\Plugin\MigrationInterface $migration
     *   Migration entity.
     * @param array $destination_id_values
     *   Values represent the destination ID.
     */
    public function __construct(MigrationInterface $migration, $destination_id_values) {
        $this->migration = $migration;
        $this->destinationIdValues = $destination_id_values;
    }
    
    /**
     * Gets the migration entity.
     *
     * @return \Drupal\migrate\Plugin\MigrationInterface
     *   The migration being rolled back.
     */
    public function getMigration() {
        return $this->migration;
    }
    
    /**
     * Gets the destination ID values.
     *
     * @return array
     *   The destination ID as an array.
     */
    public function getDestinationIdValues() {
        return $this->destinationIdValues;
    }

}

Members

Title Sort descending Modifiers Object type Summary
MigrateRowDeleteEvent::$destinationIdValues protected property Values representing the destination ID.
MigrateRowDeleteEvent::$migration protected property Migration entity.
MigrateRowDeleteEvent::getDestinationIdValues public function Gets the destination ID values.
MigrateRowDeleteEvent::getMigration public function Gets the migration entity.
MigrateRowDeleteEvent::__construct public function Constructs a row deletion event object.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal