ListField.php

Same filename in this branch
  1. 9 core/modules/options/src/Plugin/views/filter/ListField.php
Same filename in other branches
  1. 8.9.x core/modules/options/src/Plugin/views/filter/ListField.php
  2. 8.9.x core/modules/options/src/Plugin/migrate/field/d7/ListField.php
  3. 10 core/modules/options/src/Plugin/views/filter/ListField.php
  4. 10 core/modules/options/src/Plugin/migrate/field/d7/ListField.php
  5. 11.x core/modules/options/src/Plugin/views/filter/ListField.php
  6. 11.x core/modules/options/src/Plugin/migrate/field/d7/ListField.php

Namespace

Drupal\options\Plugin\migrate\field\d7

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

Title Deprecated Summary
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", …

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.