TargetBundle.php
Same filename in other branches
Namespace
Drupal\taxonomy\Plugin\migrate\processFile
-
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.
*/
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
Title | Deprecated | Summary |
---|---|---|
TargetBundle | 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.