public function Field::fields in Drupal 10
Same name in this branch
- 10 core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
- 10 core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::fields()
Same name and namespace in other branches
- 8 core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::fields()
- 9 core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::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
1 method overrides Field::fields()
- FieldOptionTranslation::fields in core/
modules/ field/ src/ Plugin/ migrate/ source/ d7/ FieldOptionTranslation.php - Returns available fields on the source.
File
- core/
modules/ field/ src/ Plugin/ migrate/ source/ d7/ Field.php, line 58
Class
- Field
- Drupal 7 field source from database.
Namespace
Drupal\field\Plugin\migrate\source\d7Code
public function fields() {
return [
'id' => $this
->t('The field ID.'),
'field_name' => $this
->t('The field name.'),
'type' => $this
->t('The field type.'),
'module' => $this
->t('The module that implements the field type.'),
'active' => $this
->t('The field status.'),
'storage_type' => $this
->t('The field storage type.'),
'storage_module' => $this
->t('The module that implements the field storage type.'),
'storage_active' => $this
->t('The field storage status.'),
'locked' => $this
->t('Locked'),
'data' => $this
->t('The field data.'),
'cardinality' => $this
->t('Cardinality'),
'translatable' => $this
->t('Translatable'),
'deleted' => $this
->t('Deleted'),
'instances' => $this
->t('The field instances.'),
];
}