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

Breadcrumb

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

function FieldDiscovery::getEntityFields

Gets all field information for a particular entity type.

Parameters

string $core: The Drupal core version.

string $entity_type_id: The legacy entity type ID.

Return value

array A multidimensional array of source data from the relevant field instance migration for the entity type, keyed first by bundle and then by field name.

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

File

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

Class

FieldDiscovery
Provides field discovery for Drupal 6 & 7 migrations.

Namespace

Drupal\migrate_drupal

Code

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

API Navigation

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