function FieldDiscovery::getBundleFields
Gets all field information for a particular entity type and bundle.
Parameters
string $core: The Drupal core version.
string $entity_type_id: The legacy entity type ID.
string $bundle: The legacy bundle (or content_type).
Return value
array An array of source data from the relevant field instance migration for the bundle, keyed by field name.
File
-
core/
modules/ migrate_drupal/ src/ FieldDiscovery.php, line 260
Class
- FieldDiscovery
- Provides field discovery for Drupal 6 & 7 migrations.
Namespace
Drupal\migrate_drupalCode
protected function getBundleFields($core, $entity_type_id, $bundle) {
$fields = $this->getEntityFields($core, $entity_type_id);
if (!empty($fields[$bundle])) {
return $fields[$bundle];
}
return [];
}