class MigrateSourceTermReference in Relation 8
Same name and namespace in other branches
- 8.2 relation_migrate/relation_migrate.source.inc \MigrateSourceTermReference
- 7 relation_migrate/relation_migrate.source.inc \MigrateSourceTermReference
Source migration plugin for taxonomy_term_reference.
Hierarchy
- class \MigrateSourceReference extends \MigrateSource
- class \MigrateSourceTermReference
Expanded class hierarchy of MigrateSourceTermReference
File
- relation_migrate/
relation_migrate.source.inc, line 232 - Source plugin for *reference fields.
View source
class MigrateSourceTermReference extends MigrateSourceReference {
/**
* Constructor.
*
* @param array $fields
* List of fields to be migrated.
*/
function __construct(array $fields, array $options = array()) {
parent::__construct('taxonomy_term_reference', $fields, $options);
}
/**
* Fetch the next row of data, returning it as an object. Return FALSE
* when there is no more data available.
*/
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;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateSourceReference:: |
protected | property | Machine names of fields that will be imported. | |
MigrateSourceReference:: |
protected | property | Field type. | |
MigrateSourceReference:: |
protected | property | ID of a row, that will be imported during next iteration. | |
MigrateSourceReference:: |
protected | property | Place where data is stored during import. | |
MigrateSourceReference:: |
public | function | Return the number of available source records. | |
MigrateSourceReference:: |
public | function | Returns a list of fields available to be mapped from the source, keyed by field name. | |
MigrateSourceReference:: |
public | function | Do whatever needs to be done to start a fresh traversal of the source data. | |
MigrateSourceReference:: |
protected | function | Constructs row object, that should be returned from $this->getNextRow(). | |
MigrateSourceReference:: |
public | function | Return a string representing the source, for display in the UI. | |
MigrateSourceTermReference:: |
public | function | Fetch the next row of data, returning it as an object. Return FALSE when there is no more data available. | |
MigrateSourceTermReference:: |
function |
Constructor. Overrides MigrateSourceReference:: |