public function MigrateSourceEntityReference::getNextRow in Relation 8
Same name and namespace in other branches
- 8.2 relation_migrate/relation_migrate.source.inc \MigrateSourceEntityReference::getNextRow()
- 7 relation_migrate/relation_migrate.source.inc \MigrateSourceEntityReference::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 151 - Source plugin for *reference fields.
Class
- MigrateSourceEntityReference
- Source migration plugin for entityreference.
Code
public function getNextRow() {
if (!empty($this->result[$this->next_row])) {
$item = $this->result[$this->next_row];
$dest_type = field_read_field($item->field_name);
$this->next_row++;
return $this
->_constructRow($item, $dest_type['settings']['target_type'], $item->field_name);
}
return FALSE;
}