FieldTypeDefaults.php

Same filename in this branch
  1. 8.9.x core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
  2. 8.9.x core/modules/field/src/Plugin/migrate/process/d7/FieldTypeDefaults.php
Same filename and directory in other branches
  1. 9 core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
  2. 9 core/modules/field/src/Plugin/migrate/process/d7/FieldTypeDefaults.php
  3. 10 core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
  4. 10 core/modules/field/src/Plugin/migrate/process/d7/FieldTypeDefaults.php
  5. 11.x core/modules/field/src/Plugin/migrate/process/d6/FieldTypeDefaults.php
  6. 11.x core/modules/field/src/Plugin/migrate/process/d7/FieldTypeDefaults.php

Namespace

Drupal\field\Plugin\migrate\process

File

core/modules/field/src/Plugin/migrate/process/FieldTypeDefaults.php

View source
<?php

namespace Drupal\field\Plugin\migrate\process;

@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);
use Drupal\field\Plugin\migrate\process\d6\FieldTypeDefaults as D6FieldTypeDefaults;

/**
 * BC Layer.
 *
 * @MigrateProcessPlugin(
 *   id = "field_type_defaults"
 * )
 *
 * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0.
 * Use d6_field_type_defaults or d7_field_type_defaults instead.
 *
 * @see https://www.drupal.org/node/2944589
 */
class FieldTypeDefaults extends D6FieldTypeDefaults {

}

Classes

Title Deprecated Summary
FieldTypeDefaults

in drupal:8.6.0 and is removed from drupal:9.0.0. Use d6_field_type_defaults or d7_field_type_defaults instead.

BC Layer.

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