You are here

public function MigrateSource::current in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/source.inc \MigrateSource::current()

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

File

includes/source.inc, line 229
Define base for migration sources.

Class

MigrateSource
Abstract base class for source handling.

Code

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