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

Breadcrumb

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

function EntityContentComplete::getIds

Overrides EntityContentBase::getIds

File

core/modules/migrate/src/Plugin/migrate/destination/EntityContentComplete.php, line 28

Class

EntityContentComplete
Provides a destination for migrating the entire entity revision table.

Namespace

Drupal\migrate\Plugin\migrate\destination

Code

public function getIds() {
    $ids = [];
    $id_key = $this->getKey('id');
    $ids[$id_key] = $this->getDefinitionFromEntity($id_key);
    $revision_key = $this->getKey('revision');
    if ($revision_key) {
        $ids[$revision_key] = $this->getDefinitionFromEntity($revision_key);
    }
    $langcode_key = $this->getKey('langcode');
    if ($langcode_key) {
        $ids[$langcode_key] = $this->getDefinitionFromEntity($langcode_key);
    }
    return $ids;
}

API Navigation

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