You are here

public function AddressField::processCckFieldValues in Address 8

Apply any custom processing to the cck bundle migrations.

Parameters

\Drupal\migrate\Plugin\MigrationInterface $migration: The migration entity.

string $field_name: The field name we're processing the value for.

array $data: The array of field data from CckFieldValues::fieldData().

Overrides MigrateCckFieldInterface::processCckFieldValues

File

src/Plugin/migrate/cckfield/AddressField.php, line 34

Class

AddressField
Cck migration field.

Namespace

Drupal\address\Plugin\migrate\cckfield

Code

public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
  return $this
    ->processFieldValues($migration, $field_name, $data);
}