Same filename and directory in other branches
  1. 8.9.x core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php
  2. 9 core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php

Namespace

Drupal\user\Plugin\migrate\process

File

core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php
View source
<?php

namespace Drupal\user\Plugin\migrate\process;

use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;

#[MigrateProcess('profile_field_settings')]
class ProfileFieldSettings extends ProcessPluginBase {

  /**
   * {@inheritdoc}
   */
  public function transform($type, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $settings = [];
    switch ($type) {
      case 'date':
        $settings['datetime_type'] = 'date';
        break;
    }
    return $settings;
  }

}

Classes