Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / file / src / Plugin / migrate / field / d6 / ImageField.php
diff --git a/web/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php b/web/core/modules/file/src/Plugin/migrate/field/d6/ImageField.php
new file mode 100644 (file)
index 0000000..c05d8c3
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Drupal\file\Plugin\migrate\field\d6;
+
+@trigger_error('ImageField is deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.x. Use \Drupal\image\Plugin\migrate\field\d6\ImageField instead. See https://www.drupal.org/node/2936061.', E_USER_DEPRECATED);
+
+use Drupal\image\Plugin\migrate\field\d6\ImageField as NonLegacyImageField;
+
+/**
+ * Field plugin for image fields.
+ *
+ * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.x. Use
+ * \Drupal\image\Plugin\migrate\field\d6\ImageField instead.
+ *
+ * @see https://www.drupal.org/node/2936061
+ */
+class ImageField extends NonLegacyImageField {}