function Term::prepareRow

Same name in this branch
  1. 9 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::prepareRow()
Same name in other branches
  1. 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::prepareRow()
  2. 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/Term.php \Drupal\taxonomy\Plugin\migrate\source\Term::prepareRow()
  3. 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::prepareRow()
  4. 10 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::prepareRow()
  5. 10 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::prepareRow()
  6. 11.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::prepareRow()
  7. 11.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::prepareRow()

Overrides SourcePluginBase::prepareRow

1 call to Term::prepareRow()
TermLocalizedTranslation::prepareRow in core/modules/taxonomy/src/Plugin/migrate/source/d6/TermLocalizedTranslation.php
Adds additional data to the row.
1 method overrides Term::prepareRow()
TermLocalizedTranslation::prepareRow in core/modules/taxonomy/src/Plugin/migrate/source/d6/TermLocalizedTranslation.php
Adds additional data to the row.

File

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

Class

Term
Drupal 6 taxonomy term source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.