You are here

MigrateCckField.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/migrate_drupal/src/Annotation/MigrateCckField.php

File

core/modules/migrate_drupal/src/Annotation/MigrateCckField.php
View source
<?php

/**
 * @file
 * Contains \Drupal\migrate_drupal\Annotation\MigrateCckField.
 */
namespace Drupal\migrate_drupal\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a cckfield plugin annotation object.
 *
 * cckfield plugins are variously responsible for handling the migration of
 * CCK fields from Drupal 6 to Drupal 8. They are allowed to alter CCK-related
 * migrations when migrations are being generated, and can compute destination
 * field types for individual fields during the actual migration process.
 *
 * Plugin Namespace: Plugin\migrate\cckfield
 *
 * @Annotation
 */
class MigrateCckField extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * Map of D6 and D7 field types to D8 field type plugin IDs.
   *
   * @var string[]
   */
  public $type_map = [];

}

Classes

Namesort descending Description
MigrateCckField Defines a cckfield plugin annotation object.