Version 1
[yaffs-website] / web / core / modules / user / src / Plugin / migrate / process / ProfileFieldSettings.php
diff --git a/web/core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php b/web/core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php
new file mode 100644 (file)
index 0000000..6e16c59
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Drupal\user\Plugin\migrate\process;
+
+use Drupal\migrate\MigrateExecutableInterface;
+use Drupal\migrate\ProcessPluginBase;
+use Drupal\migrate\Row;
+
+/**
+ * @MigrateProcessPlugin(
+ *   id = "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;
+  }
+
+}