You are here

public function FieldPluginBase::processFieldValues in Drupal 8

Defines the process pipeline for field values.

Deprecated

in drupal:8.6.0 and is removed from drupal:9.0.0. Use defineValueProcessPipeline() instead.

See also

https://www.drupal.org/node/2944598

::defineValueProcessPipeline()

File

core/modules/migrate_drupal/src/Plugin/migrate/field/FieldPluginBase.php, line 159

Class

FieldPluginBase
The base class for all field plugins.

Namespace

Drupal\migrate_drupal\Plugin\migrate\field

Code

public function processFieldValues(MigrationInterface $migration, $field_name, $data) {
  @trigger_error('Deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use defineValueProcessPipeline() instead. See https://www.drupal.org/node/2944598.', E_USER_DEPRECATED);
  return $this
    ->defineValueProcessPipeline($migration, $field_name, $data);
}