TargetBundle.php

Namespace

Drupal\taxonomy\Plugin\migrate\process

File

core/modules/taxonomy/src/Plugin/migrate/process/TargetBundle.php

View source
<?php

namespace Drupal\taxonomy\Plugin\migrate\process;

use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;

/**
 * Converts a Drupal 6 vocabulary ID to a target bundle array.
 *
 * @deprecated in drupal:11.3.0 and is removed from drupal:12.0.0. There is no
 *   replacement.
 *
 * @see https://www.drupal.org/node/3533560
 */
class TargetBundle extends ProcessPluginBase {
  public function __construct(array $configuration, $plugin_id, $plugin_definition) {
    @trigger_error(__CLASS__ . ' is deprecated in drupal:11.3.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3533560', E_USER_DEPRECATED);
    parent::__construct($configuration, $plugin_id, $plugin_definition);
  }
  
  /**
   * {@inheritdoc}
   */
  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $target_bundle = [];
    $vid = $row->get('@_vid');
    $target_bundle[$vid] = $vid;
    return $target_bundle;
  }

}

Classes

Title Deprecated Summary
TargetBundle

in drupal:11.3.0 and is removed from drupal:12.0.0. There is no replacement.

Converts a Drupal 6 vocabulary ID to a target bundle array.

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