You are here

public function MigrateSQLMap::current in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 plugins/sources/sqlmap.inc \MigrateSQLMap::current()

Implementation of Iterator::current() - called when entering a loop iteration, returning the current row.

File

plugins/sources/sqlmap.inc, line 721
Defines a Drupal db-based implementation of MigrateMap.

Class

MigrateSQLMap
@file Defines a Drupal db-based implementation of MigrateMap.

Code

public function current() {
  return $this->currentRow;
}