Migration.php

Same filename in this branch
  1. 8.9.x core/modules/migrate/src/Plugin/Migration.php
Same filename and directory in other branches
  1. 9 core/modules/migrate/src/Plugin/Migration.php
  2. 10 core/modules/migrate/src/Plugin/Migration.php
  3. 11.x core/modules/migrate/src/Plugin/Migration.php

Namespace

Drupal\migrate\Plugin\migrate\process

File

core/modules/migrate/src/Plugin/migrate/process/Migration.php

View source
<?php

namespace Drupal\migrate\Plugin\migrate\process;

@trigger_error('The ' . __NAMESPACE__ . '\\Migration is deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\\MigrationLookup', E_USER_DEPRECATED);

/**
 * Calculates the value of a property based on a previous migration.
 *
 * @link https://www.drupal.org/node/2149801 Online handbook documentation for migration process plugin @endlink
 *
 * @MigrateProcessPlugin(
 *   id = "migration"
 * )
 *
 * @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0.
 *  Use \Drupal\migrate\Plugin\migrate\process\MigrationLookup instead.
 */
class Migration extends MigrationLookup {

}

Classes

Title Deprecated Summary
Migration

in drupal:8.3.0 and is removed from drupal:9.0.0. Use \Drupal\migrate\Plugin\migrate\process\MigrationLookup instead.

Calculates the value of a property based on a previous migration.

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