f870ba44ce9382d8e5041fc6572c40513e7fe0dd
[yaffs-website] / web / core / modules / field / src / Plugin / migrate / process / FieldTypeDefaults.php
1 <?php
2
3 namespace Drupal\field\Plugin\migrate\process;
4
5 @trigger_error('The field_type_defaults process plugin is deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Use d6_field_type_defaults or d7_field_type_defaults instead. See https://www.drupal.org/node/2944589.', E_USER_DEPRECATED);
6
7 use Drupal\field\Plugin\migrate\process\d6\FieldTypeDefaults as D6FieldTypeDefaults;
8
9 /**
10  * BC Layer.
11  *
12  * @MigrateProcessPlugin(
13  *   id = "field_type_defaults"
14  * )
15  *
16  * @deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.x.
17  * Use d6_field_type_defaults or d7_field_type_defaults instead.
18  *
19  * @see https://www.drupal.org/node/2944589
20  */
21 class FieldTypeDefaults extends D6FieldTypeDefaults {}