714c364b8f44682dcdee450d274b7051bdaa7491
[yaffs-website] / web / core / modules / options / src / Plugin / migrate / field / d7 / ListField.php
1 <?php
2
3 namespace Drupal\options\Plugin\migrate\field\d7;
4
5 use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
6
7 /**
8  * @MigrateField(
9  *   id = "list",
10  *   type_map = {
11  *     "list_boolean" = "boolean",
12  *     "list_integer" = "list_integer",
13  *     "list_text" = "list_string",
14  *   },
15  *   core = {7},
16  *   source_module = "list",
17  *   destination_module = "options"
18  * )
19  */
20 class ListField extends FieldPluginBase {}