You are here

protected function FieldDiscovery::getBundleFields in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/src/FieldDiscovery.php \Drupal\migrate_drupal\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.

1 call to FieldDiscovery::getBundleFields()
FieldDiscoveryTestClass::getBundleFields in core/modules/migrate_drupal/tests/modules/field_discovery_test/src/FieldDiscoveryTestClass.php
Gets all field information for a particular entity type and bundle.
1 method overrides FieldDiscovery::getBundleFields()
FieldDiscoveryTestClass::getBundleFields in core/modules/migrate_drupal/tests/modules/field_discovery_test/src/FieldDiscoveryTestClass.php
Gets all field information for a particular entity type and bundle.

File

core/modules/migrate_drupal/src/FieldDiscovery.php, line 284

Class

FieldDiscovery
Provides field discovery for Drupal 6 & 7 migrations.

Namespace

Drupal\migrate_drupal

Code

protected function getBundleFields($core, $entity_type_id, $bundle) {
  $fields = $this
    ->getEntityFields($core, $entity_type_id);
  if (!empty($fields[$bundle])) {
    return $fields[$bundle];
  }
  return [];
}