public function FieldInstance::fields in Drupal 10
Same name in this branch
- 10 core/modules/field/src/Plugin/migrate/source/d6/FieldInstance.php \Drupal\field\Plugin\migrate\source\d6\FieldInstance::fields()
- 10 core/modules/field/src/Plugin/migrate/source/d7/FieldInstance.php \Drupal\field\Plugin\migrate\source\d7\FieldInstance::fields()
Same name and namespace in other branches
- 8 core/modules/field/src/Plugin/migrate/source/d6/FieldInstance.php \Drupal\field\Plugin\migrate\source\d6\FieldInstance::fields()
- 9 core/modules/field/src/Plugin/migrate/source/d6/FieldInstance.php \Drupal\field\Plugin\migrate\source\d6\FieldInstance::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/ field/ src/ Plugin/ migrate/ source/ d6/ FieldInstance.php, line 60
Class
- FieldInstance
- Drupal 6 field instances source from database.
Namespace
Drupal\field\Plugin\migrate\source\d6Code
public function fields() {
return [
'field_name' => $this
->t('The machine name of field.'),
'type_name' => $this
->t('Content type where this field is in use.'),
'weight' => $this
->t('Weight.'),
'label' => $this
->t('A name to show.'),
'widget_type' => $this
->t('Widget type.'),
'widget_settings' => $this
->t('Serialize data with widget settings.'),
'display_settings' => $this
->t('Serialize data with display settings.'),
'description' => $this
->t('A description of field.'),
'widget_module' => $this
->t('Module that implements widget.'),
'widget_active' => $this
->t('Status of widget'),
'module' => $this
->t('The module that provides the field.'),
];
}