You are here

TargetBundle.php in Drupal 10

File

core/modules/taxonomy/src/Plugin/migrate/process/TargetBundle.php
View source
<?php

namespace Drupal\taxonomy\Plugin\migrate\process;

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

/**
 * Converts a Drupal 6 vocabulary ID to a target bundle array.
 *
 * @MigrateProcessPlugin(
 *   id = "target_bundle"
 * )
 */
class TargetBundle extends ProcessPluginBase {

  /**
   * {@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

Namesort descending Description
TargetBundle Converts a Drupal 6 vocabulary ID to a target bundle array.