public function MigrateCckFieldInterface::processCckFieldValues in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate_drupal/src/Plugin/MigrateCckFieldInterface.php \Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface::processCckFieldValues()
Apply any custom processing to the cck bundle migrations.
Parameters
\Drupal\migrate\Entity\MigrationInterface $migration: The migration entity.
string $field_name: The field name we're processing the value for.
array $data: The array of field data from CckFieldValues::fieldData().
4 methods override MigrateCckFieldInterface::processCckFieldValues()
- FileField::processCckFieldValues in core/
modules/ file/ src/ Plugin/ migrate/ cckfield/ FileField.php - Apply any custom processing to the cck bundle migrations.
- LinkField::processCckFieldValues in core/
modules/ link/ src/ Plugin/ migrate/ cckfield/ LinkField.php - Apply any custom processing to the cck bundle migrations.
- TaxonomyTermReference::processCckFieldValues in core/
modules/ taxonomy/ src/ Plugin/ migrate/ cckfield/ TaxonomyTermReference.php - Apply any custom processing to the cck bundle migrations.
- TextField::processCckFieldValues in core/
modules/ text/ src/ Plugin/ migrate/ cckfield/ TextField.php - Apply any custom processing to the cck bundle migrations.
File
- core/
modules/ migrate_drupal/ src/ Plugin/ MigrateCckFieldInterface.php, line 79 - Contains \Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface.
Class
- MigrateCckFieldInterface
- Provides an interface for all CCK field type plugins.
Namespace
Drupal\migrate_drupal\PluginCode
public function processCckFieldValues(MigrationInterface $migration, $field_name, $data);