Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / options / src / Plugin / migrate / field / d7 / ListField.php
diff --git a/web/core/modules/options/src/Plugin/migrate/field/d7/ListField.php b/web/core/modules/options/src/Plugin/migrate/field/d7/ListField.php
new file mode 100644 (file)
index 0000000..fff29ee
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\options\Plugin\migrate\field\d7;
+
+use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
+
+/**
+ * @MigrateField(
+ *   id = "list",
+ *   type_map = {
+ *     "list_boolean" = "boolean",
+ *     "list_integer" = "list_integer",
+ *     "list_text" = "list_string",
+ *   },
+ *   core = {7}
+ * )
+ */
+class ListField extends FieldPluginBase {}