Configure field instance settings for field collections.
@MigrateProcessPlugin(
id = "field_collection_field_instance_settings"
)
Expanded class hierarchy of FieldCollectionFieldInstanceSettings
class FieldCollectionFieldInstanceSettings extends ProcessPluginBase {
/**
* {@inheritdoc}
*/
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
$type = $row
->getSourceProperty('type');
if ($type == 'field_collection') {
$bundles = $this->entityTypeBundleInfo
->getBundleInfo('paragraph');
$target_bundle = $row
->getSourceProperty('field_name') ?? '';
// Remove field_ prefix for new bundle.
$target_bundle = substr($target_bundle, FieldCollection::FIELD_COLLECTION_PREFIX_LENGTH);
if (!isset($bundles[$target_bundle])) {
throw new MigrateSkipRowException('No target paragraph bundle found for field_collection');
}
// Enable only this paragraph type for this field.
$weight = 0;
$value['handler_settings']['negate'] = 0;
$value['handler_settings']['target_bundles'] = [
$target_bundle => $target_bundle,
];
$value['handler_settings']['target_bundles_drag_drop'][$target_bundle] = [
'enabled' => TRUE,
'weight' => ++$weight,
];
unset($bundles[$target_bundle]);
foreach ($bundles as $bundle_name => $bundle) {
$value['handler_settings']['target_bundles_drag_drop'][$bundle_name] = [
'enabled' => FALSE,
'weight' => ++$weight,
];
unset($bundles[$bundle_name]);
}
}
return $value;
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldCollectionFieldInstanceSettings:: |
public | function | ||
ProcessPluginBase:: |
protected | property | The entity bundle info service. | |
ProcessPluginBase:: |
public static | function | ||
ProcessPluginBase:: |
public | function | 1 | |
ProcessPluginBase:: |
public | function | ||
ProcessPluginBase:: |
public | function | ||
ProcessPluginBase:: |
public | function |