You are here

public function DateField::defineValueProcessPipeline in Drupal 8

Same name in this branch
  1. 8 core/modules/datetime/src/Plugin/migrate/field/DateField.php \Drupal\datetime\Plugin\migrate\field\DateField::defineValueProcessPipeline()
  2. 8 core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php \Drupal\datetime\Plugin\migrate\field\d6\DateField::defineValueProcessPipeline()

Apply any custom processing to the field 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 FieldValues::fieldData().

Overrides FieldPluginBase::defineValueProcessPipeline

File

core/modules/datetime/src/Plugin/migrate/field/d6/DateField.php, line 50

Class

DateField
Plugin annotation @MigrateField( id = "date", type_map = { "date" = "datetime", "datestamp" = "timestamp", "datetime" = "datetime", }, core = {6}, source_module = "date", destination_module = "datetime", weight = 9999999, )

Namespace

Drupal\datetime\Plugin\migrate\field\d6

Code

public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
  switch ($data['type']) {
    case 'date':
      $from_format = 'Y-m-d\\TH:i:s';
      $to_format = 'Y-m-d\\TH:i:s';
      break;
    case 'datestamp':
      $from_format = 'U';
      $to_format = 'U';
      break;
    case 'datetime':
      $from_format = 'Y-m-d H:i:s';
      $to_format = 'Y-m-d\\TH:i:s';
      break;
    default:
      throw new MigrateException(sprintf('Field %s of type %s is an unknown date field type.', $field_name, var_export($data['type'], TRUE)));
  }
  $process = [
    'value' => [
      'plugin' => 'format_date',
      'from_format' => $from_format,
      'to_format' => $to_format,
      'source' => 'value',
    ],
  ];
  $process = [
    'plugin' => 'sub_process',
    'source' => $field_name,
    'process' => $process,
  ];
  $migration
    ->mergeProcessOfProperty($field_name, $process);
}