You are here

public function FieldTypeDefaults::transform in Drupal 9

Same name in this branch
  1. 9 core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php \Drupal\field\Plugin\migrate\process\d6\FieldTypeDefaults::transform()
  2. 9 core/modules/field/src/Plugin/migrate/process/d7/FieldTypeDefaults.php \Drupal\field\Plugin\migrate\process\d7\FieldTypeDefaults::transform()
Same name and namespace in other branches
  1. 8 core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php \Drupal\field\Plugin\migrate\process\d6\FieldTypeDefaults::transform()

Performs the associated process.

Parameters

mixed $value: The value to be transformed.

\Drupal\migrate\MigrateExecutableInterface $migrate_executable: The migration in which this process is being executed.

\Drupal\migrate\Row $row: The row from the source to process. Normally, just transforming the value is adequate but very rarely you might need to change two columns at the same time or something like that.

string $destination_property: The destination property currently worked on. This is only used together with the $row above.

Return value

string|array The newly transformed value.

Overrides ProcessPluginBase::transform

File

core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php, line 22

Class

FieldTypeDefaults
Gives us a chance to set per field defaults.

Namespace

Drupal\field\Plugin\migrate\process\d6

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
  if (is_array($value)) {
    if ($row
      ->getSourceProperty('module') == 'date') {
      $value = 'datetime_default';
    }
    else {
      throw new MigrateException(sprintf('Failed to lookup field type %s in the static map.', var_export($value, TRUE)));
    }
  }
  return $value;
}