Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FieldDiscovery.php

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_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 [];
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal