class TargetBundle
Same name in other branches
- 10 core/modules/taxonomy/src/Plugin/migrate/process/TargetBundle.php \Drupal\taxonomy\Plugin\migrate\process\TargetBundle
- 11.x core/modules/taxonomy/src/Plugin/migrate/process/TargetBundle.php \Drupal\taxonomy\Plugin\migrate\process\TargetBundle
Converts a Drupal 6 vocabulary ID to a target bundle array.
Plugin annotation
@MigrateProcessPlugin(
id = "target_bundle"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
- class \Drupal\migrate\ProcessPluginBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateProcessInterface
- class \Drupal\taxonomy\Plugin\migrate\process\TargetBundle extends \Drupal\migrate\ProcessPluginBase
- class \Drupal\migrate\ProcessPluginBase extends \Drupal\Core\Plugin\PluginBase implements \Drupal\migrate\Plugin\MigrateProcessInterface
- class \Drupal\Core\Plugin\PluginBase extends \Drupal\Component\Plugin\PluginBase uses \Drupal\Core\StringTranslation\StringTranslationTrait, \Drupal\Core\DependencyInjection\DependencySerializationTrait, \Drupal\Core\Messenger\MessengerTrait
Expanded class hierarchy of TargetBundle
File
-
core/
modules/ taxonomy/ src/ Plugin/ migrate/ process/ TargetBundle.php, line 16
Namespace
Drupal\taxonomy\Plugin\migrate\processView source
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;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
PluginInspectionInterface::getPluginDefinition | public | function | Gets the definition of the plugin implementation. | 6 | |
PluginInspectionInterface::getPluginId | public | function | Gets the plugin_id of the plugin instance. | 2 | |
ProcessPluginBase::multiple | public | function | Indicates whether the returned value requires multiple handling. | Overrides MigrateProcessInterface::multiple | 3 |
TargetBundle::transform | public | function | Performs the associated process. | Overrides ProcessPluginBase::transform |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.