class MigratePrepareRowTestHooks

Hook implementations for migrate_prepare_row_test.

Hierarchy

Expanded class hierarchy of MigratePrepareRowTestHooks

File

core/modules/migrate/tests/modules/migrate_prepare_row_test/src/Hook/MigratePrepareRowTestHooks.php, line 16

Namespace

Drupal\migrate_prepare_row_test\Hook
View source
class MigratePrepareRowTestHooks {
  
  /**
   * Implements hook_migrate_prepare_row().
   */
  public function migratePrepareRow(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) : void {
    // Test both options for save_to_map.
    $data = $row->getSourceProperty('data');
    if ($data == 'skip_and_record') {
      // Record mapping but don't record a message.
      throw new MigrateSkipRowException('', TRUE);
    }
    elseif ($data == 'skip_and_do_not_record') {
      // Don't record mapping but record a message.
      throw new MigrateSkipRowException('skip_and_do_not_record message', FALSE);
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary
MigratePrepareRowTestHooks::migratePrepareRow public function Implements hook_migrate_prepare_row().

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