You are here

public function FieldSettings::transform in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/field/src/Plugin/migrate/process/d6/FieldSettings.php \Drupal\field\Plugin\migrate\process\d6\FieldSettings::transform()
  2. 8 core/modules/field/src/Plugin/migrate/process/d7/FieldSettings.php \Drupal\field\Plugin\migrate\process\d7\FieldSettings::transform()
Same name and namespace in other branches
  1. 8.0 core/modules/field/src/Plugin/migrate/process/d7/FieldSettings.php \Drupal\field\Plugin\migrate\process\d7\FieldSettings::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/d7/FieldSettings.php, line 24
Contains \Drupal\field\Plugin\migrate\process\d7\FieldSettings.

Class

FieldSettings
Plugin annotation @MigrateProcessPlugin( id = "d7_field_settings" )

Namespace

Drupal\field\Plugin\migrate\process\d7

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
  $value = $row
    ->getSourceProperty('settings');
  switch ($row
    ->getSourceProperty('type')) {
    case 'image':
      if (!is_array($value['default_image'])) {
        $value['default_image'] = array(
          'uuid' => '',
        );
      }
      break;
    case 'taxonomy_term_reference':
      $value['target_type'] = 'taxonomy_term';
      break;
    default:
      break;
  }
  return $value;
}