public function AggregatorItem::getIds in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/aggregator/src/Plugin/migrate/source/AggregatorItem.php \Drupal\aggregator\Plugin\migrate\source\AggregatorItem::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]).
Overrides MigrateSourceInterface::getIds
File
- core/
modules/ aggregator/ src/ Plugin/ migrate/ source/ AggregatorItem.php, line 50 - Contains \Drupal\aggregator\Plugin\migrate\source\AggregatorItem.
Class
- AggregatorItem
- Drupal aggregator item source from database.
Namespace
Drupal\aggregator\Plugin\migrate\sourceCode
public function getIds() {
$ids['iid']['type'] = 'integer';
return $ids;
}