function migrate_skip_all_rows_test_migrate_prepare_row
Same name in other branches
- 9 core/modules/migrate/tests/modules/migrate_skip_all_rows_test/migrate_skip_all_rows_test.module \migrate_skip_all_rows_test_migrate_prepare_row()
- 10 core/modules/migrate/tests/modules/migrate_skip_all_rows_test/migrate_skip_all_rows_test.module \migrate_skip_all_rows_test_migrate_prepare_row()
Implements hook_migrate_prepare_row().
1 string reference to 'migrate_skip_all_rows_test_migrate_prepare_row'
- MigrateSourceTestBase::testSource in core/
modules/ migrate/ tests/ src/ Kernel/ MigrateSourceTestBase.php - Tests the source plugin against a particular data set.
File
-
core/
modules/ migrate/ tests/ modules/ migrate_skip_all_rows_test/ migrate_skip_all_rows_test.module, line 18
Code
function migrate_skip_all_rows_test_migrate_prepare_row(Row $row, MigrateSourceInterface $source, MigrationInterface $migration) {
if (\Drupal::state()->get('migrate_skip_all_rows_test_migrate_prepare_row')) {
throw new MigrateSkipRowException();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.