You are here

public function MigrateSourceTermReference::getNextRow in Relation 7

Same name and namespace in other branches
  1. 8.2 relation_migrate/relation_migrate.source.inc \MigrateSourceTermReference::getNextRow()
  2. 8 relation_migrate/relation_migrate.source.inc \MigrateSourceTermReference::getNextRow()

Fetch the next row of data, returning it as an object. Return FALSE when there is no more data available.

File

relation_migrate/relation_migrate.source.inc, line 234
Source plugin for *reference fields.

Class

MigrateSourceTermReference
Source migration plugin for taxonomy_term_reference.

Code

public function getNextRow() {
  if (!empty($this->result[$this->next_row])) {
    $item = $this->result[$this->next_row];
    $this->next_row++;
    return $this
      ->_constructRow($item, 'taxonomy_term', $item->field_name);
  }
  return FALSE;
}