function Term::fields
Same name in this branch
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::fields()
- 8.9.x core/modules/taxonomy/src/Plugin/migrate/source/Term.php \Drupal\taxonomy\Plugin\migrate\source\Term::fields()
Same name in other branches
- 9 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::fields()
- 9 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::fields()
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::fields()
- 10 core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::fields()
- 11.x core/modules/taxonomy/src/Plugin/migrate/source/d6/Term.php \Drupal\taxonomy\Plugin\migrate\source\d6\Term::fields()
- 11.x core/modules/taxonomy/src/Plugin/migrate/source/d7/Term.php \Drupal\taxonomy\Plugin\migrate\source\d7\Term::fields()
Overrides MigrateSourceInterface::fields
2 calls to Term::fields()
- TermLocalizedTranslation::fields in core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ TermLocalizedTranslation.php - Returns available fields on the source.
- TermTranslation::fields in core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ TermTranslation.php - Returns available fields on the source.
2 methods override Term::fields()
- TermLocalizedTranslation::fields in core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ TermLocalizedTranslation.php - Returns available fields on the source.
- TermTranslation::fields in core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ TermTranslation.php - Returns available fields on the source.
File
-
core/
modules/ taxonomy/ src/ Plugin/ migrate/ source/ d7/ Term.php, line 47
Class
- Term
- Taxonomy term source from database.
Namespace
Drupal\taxonomy\Plugin\migrate\source\d7Code
public function fields() {
$fields = [
'tid' => $this->t('The term ID.'),
'vid' => $this->t('Existing term VID'),
'machine_name' => $this->t('Vocabulary machine name'),
'name' => $this->t('The name of the term.'),
'description' => $this->t('The term description.'),
'weight' => $this->t('Weight'),
'parent' => $this->t("The Drupal term IDs of the term's parents."),
'format' => $this->t("Format of the term description."),
];
return $fields;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.