You are here

public function MigrateSource::valid in Migrate 7.2

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

Implementation of Iterator::valid() - called at the top of the loop, returning TRUE to process the loop and FALSE to terminate it

File

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

Class

MigrateSource
Abstract base class for source handling.

Code

public function valid() {
  return !is_null($this->currentRow);
}