You are here

public function Term::prepareRow in Drupal 8

Same name in this branch
  1. 8 core/modules/taxonomy/src/Plugin/migrate/source/Term.php \Drupal\taxonomy\Plugin\migrate\source\Term::prepareRow()
  2. 8 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::prepareRow()
  3. 8 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::prepareRow()

Adds additional data to the row.

Parameters

\Drupal\migrate\Row $row: The row object.

Return value

bool FALSE if this row needs to be skipped.

Overrides SourcePluginBase::prepareRow

File

core/modules/taxonomy/src/Plugin/migrate/source/Term.php, line 86

Class

Term
Taxonomy term source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source

Code

public function prepareRow(Row $row) {

  // Find parents for this row.
  $parents = $this
    ->select($this->termHierarchyTable, 'th')
    ->fields('th', [
    'parent',
    'tid',
  ])
    ->condition('tid', $row
    ->getSourceProperty('tid'))
    ->execute()
    ->fetchCol();
  $row
    ->setSourceProperty('parent', $parents);
  return parent::prepareRow($row);
}