public function Sql::next in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::next()
- 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::next()
1 call to Sql::next()
- Sql::rewind in core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ Sql.php, line 973
Class
- Sql
- Defines the sql based ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function next() {
$this->currentRow = $this->result
->fetchAssoc();
$this->currentKey = [];
if ($this->currentRow) {
foreach ($this
->sourceIdFields() as $map_field) {
$this->currentKey[$map_field] = $this->currentRow[$map_field];
// Leave only destination fields.
unset($this->currentRow[$map_field]);
}
}
}