You are here

public function MigrateDestinationInterface::getIds in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/Plugin/MigrateDestinationInterface.php \Drupal\migrate\Plugin\MigrateDestinationInterface::getIds()

Get the destination ids.

To support MigrateIdMap maps, derived destination classes should return schema field definition(s) corresponding to the primary key of the destination being implemented. These are used to construct the destination key fields of the map table for a migration using this destination.

Return value

array An array of ids.

10 methods override MigrateDestinationInterface::getIds()
BlockedIP::getIds in core/modules/ban/src/Plugin/migrate/destination/BlockedIp.php
Get the destination ids.
ComponentEntityDisplayBase::getIds in core/modules/migrate/src/Plugin/migrate/destination/ComponentEntityDisplayBase.php
Get the destination ids.
Config::getIds in core/modules/migrate/src/Plugin/migrate/destination/Config.php
Get the destination ids.
DummyDestination::getIds in core/modules/migrate/tests/modules/migrate_events_test/src/Plugin/migrate/destination/DummyDestination.php
Get the destination ids.
EntityConfigBase::getIds in core/modules/migrate/src/Plugin/migrate/destination/EntityConfigBase.php
Get the destination ids.

... See full list

File

core/modules/migrate/src/Plugin/MigrateDestinationInterface.php, line 38
Contains \Drupal\migrate\Plugin\MigrateDestinationInterface.

Class

MigrateDestinationInterface
Destinations are responsible for persisting source data into the destination Drupal.

Namespace

Drupal\migrate\Plugin

Code

public function getIds();