public function LanguageContentSettingsTaxonomyVocabulary::fields in Drupal 10
Same name in this branch
- 10 core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php \Drupal\language\Plugin\migrate\source\d6\LanguageContentSettingsTaxonomyVocabulary::fields()
- 10 core/modules/language/src/Plugin/migrate/source/d7/LanguageContentSettingsTaxonomyVocabulary.php \Drupal\language\Plugin\migrate\source\d7\LanguageContentSettingsTaxonomyVocabulary::fields()
Same name and namespace in other branches
- 8 core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php \Drupal\language\Plugin\migrate\source\d6\LanguageContentSettingsTaxonomyVocabulary::fields()
- 9 core/modules/language/src/Plugin/migrate/source/d6/LanguageContentSettingsTaxonomyVocabulary.php \Drupal\language\Plugin\migrate\source\d6\LanguageContentSettingsTaxonomyVocabulary::fields()
Returns available fields on the source.
Return value
array Available fields in the source, keys are the field machine names as used in field mappings, values are descriptions.
Overrides MigrateSourceInterface::fields
File
- core/
modules/ language/ src/ Plugin/ migrate/ source/ d6/ LanguageContentSettingsTaxonomyVocabulary.php, line 40
Class
- LanguageContentSettingsTaxonomyVocabulary
- Drupal 6 i18n vocabularies source from database.
Namespace
Drupal\language\Plugin\migrate\source\d6Code
public function fields() {
return [
'vid' => $this
->t('The vocabulary ID.'),
'language' => $this
->t('The default language for new terms.'),
'state' => $this
->t('The i18n taxonomy translation setting.'),
];
}