function TermLocalizedTranslation::fields

Overrides Term::fields

File

core/modules/taxonomy/src/Plugin/migrate/source/d6/TermLocalizedTranslation.php, line 97

Class

TermLocalizedTranslation
Drupal 6 i18n taxonomy terms source from database.

Namespace

Drupal\taxonomy\Plugin\migrate\source\d6

Code

public function fields() {
  $fields = [
    'language' => $this->t('Language for this term.'),
    'name_translated' => $this->t('Term name translation.'),
    'description_translated' => $this->t('Term description translation.'),
  ];
  return parent::fields() + $fields;
}

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