You are here

ListField.php in Drupal 9

File

core/modules/options/src/Plugin/migrate/field/d7/ListField.php
View source
<?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",
 *     "list_float" = "list_float",
 *   },
 *   core = {7},
 *   source_module = "list",
 *   destination_module = "options"
 * )
 */
class ListField extends FieldPluginBase {

}

Classes

Namesort descending Description
ListField Plugin annotation @MigrateField( id = "list", type_map = { "list_boolean" = "boolean", "list_integer" = "list_integer", "list_text" = "list_string", "list_float" = "list_float", }, core = {7}, source_module = "list", …