public function MigrateSourceInterface::getIds in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/src/Plugin/MigrateSourceInterface.php \Drupal\migrate\Plugin\MigrateSourceInterface::getIds()
Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
Return value
array Array keyed by source field name, with values being a schema array describing the field (such as ['type' => 'string]).
2 calls to MigrateSourceInterface::getIds()
- SqlBase::initializeIterator in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SqlBase.php - Implementation of MigrateSource::performRewind().
- SqlBase::mapJoinable in core/
modules/ migrate/ src/ Plugin/ migrate/ source/ SqlBase.php - Check if we can join against the map table.
64 methods override MigrateSourceInterface::getIds()
- Action::getIds in core/
modules/ action/ src/ Plugin/ migrate/ source/ d6/ Action.php - Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
- AggregatorFeed::getIds in core/
modules/ aggregator/ src/ Plugin/ migrate/ source/ AggregatorFeed.php - Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
- AggregatorItem::getIds in core/
modules/ aggregator/ src/ Plugin/ migrate/ source/ AggregatorItem.php - Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
- Block::getIds in core/
modules/ block/ src/ Plugin/ migrate/ source/ Block.php - Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
- BlockCustom::getIds in core/
modules/ block_content/ src/ Plugin/ migrate/ source/ d7/ BlockCustom.php - Defines the source fields uniquely identifying a source row. None of these fields should contain a NULL value - if necessary, use prepareRow() or hook_migrate_prepare_row() to rewrite NULL values to appropriate empty values (such as '' or 0).
File
- core/
modules/ migrate/ src/ Plugin/ MigrateSourceInterface.php, line 56 - Contains \Drupal\migrate\Plugin\MigrateSourceInterface.
Class
- MigrateSourceInterface
- Defines an interface for migrate sources.
Namespace
Drupal\migrate\PluginCode
public function getIds();