migrate_prepare_row_test.module

Same filename and directory in other branches
  1. 9 core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.module
  2. 8.9.x core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.module
  3. 10 core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.module

Tests the migration source plugin prepareRow() exception handling.

File

core/modules/migrate/tests/modules/migrate_prepare_row_test/migrate_prepare_row_test.module

View source
<?php


/**
 * @file
 * Tests the migration source plugin prepareRow() exception handling.
 */
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\MigrateSkipRowException;
use Drupal\migrate\Plugin\MigrateSourceInterface;
use Drupal\migrate\Row;

/**
 * Implements hook_migrate_prepare_row().
 */
function migrate_prepare_row_test_migrate_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
    // 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);
    }
}

Functions

Title Deprecated Summary
migrate_prepare_row_test_migrate_prepare_row Implements hook_migrate_prepare_row().

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