TaxonomyTermReference.php

Same filename in this branch
  1. 8.9.x core/modules/taxonomy/src/Plugin/migrate/field/TaxonomyTermReference.php
Same filename in other branches
  1. 9 core/modules/taxonomy/src/Plugin/migrate/field/TaxonomyTermReference.php
  2. 10 core/modules/taxonomy/src/Plugin/migrate/field/TaxonomyTermReference.php
  3. 11.x core/modules/taxonomy/src/Plugin/migrate/field/TaxonomyTermReference.php

Namespace

Drupal\taxonomy\Plugin\migrate\cckfield

File

core/modules/taxonomy/src/Plugin/migrate/cckfield/TaxonomyTermReference.php

View source
<?php

namespace Drupal\taxonomy\Plugin\migrate\cckfield;

@trigger_error('TaxonomyTermReference is deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.x. Use \\Drupal\\taxonomy\\Plugin\\migrate\\field\\TaxonomyTermReference instead.', E_USER_DEPRECATED);
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate_drupal\Plugin\migrate\cckfield\CckFieldPluginBase;

/**
 * @MigrateCckField(
 *   id = "taxonomy_term_reference",
 *   type_map = {
 *     "taxonomy_term_reference" = "entity_reference"
 *   },
 *   core = {6,7},
 *   source_module = "taxonomy",
 *   destination_module = "core",
 * )
 *
 * @deprecated in drupal:8.4.0 and is removed from drupal:9.0.0. Use
 * \Drupal\taxonomy\Plugin\migrate\field\TaxonomyTermReference instead.
 *
 * @see https://www.drupal.org/node/2751897
 */
class TaxonomyTermReference extends CckFieldPluginBase {
    
    /**
     * {@inheritdoc}
     */
    public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
        $process = [
            'plugin' => 'sub_process',
            'source' => $field_name,
            'process' => [
                'target_id' => 'tid',
            ],
        ];
        $migration->setProcessOfProperty($field_name, $process);
    }

}

Classes

Title Deprecated Summary
TaxonomyTermReference

in drupal:8.4.0 and is removed from drupal:9.0.0. Use \Drupal\taxonomy\Plugin\migrate\field\TaxonomyTermReference instead.

Plugin annotation @MigrateCckField( id = "taxonomy_term_reference", type_map = { "taxonomy_term_reference" = "entity_reference" }, core = {6,7}, source_module = "taxonomy", destination_module = "core", )

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