29da4d2b673092f89cf96ae26ba29e02839a76ef
[yaffs-website] / web / core / modules / file / src / Plugin / migrate / field / d7 / ImageField.php
1 <?php
2
3 namespace Drupal\file\Plugin\migrate\field\d7;
4
5 @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\d7\ImageField instead. See https://www.drupal.org/node/2936061.', E_USER_DEPRECATED);
6
7 use Drupal\image\Plugin\migrate\field\d7\ImageField as NonLegacyImageField;
8
9 /**
10  * Field plugin for image fields.
11  *
12  * @deprecated in Drupal 8.5.x, to be removed before Drupal 9.0.x. Use
13  * \Drupal\image\Plugin\migrate\field\d7\ImageField instead.
14  *
15  * @see https://www.drupal.org/node/2936061
16  */
17 class ImageField extends NonLegacyImageField {}