You are here

public function Field::fields in Drupal 8

Same name in this branch
  1. 8 core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
  2. 8 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
  1. 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 call to Field::fields()
FieldOptionTranslation::fields in core/modules/field/src/Plugin/migrate/source/d7/FieldOptionTranslation.php
Returns available fields on the source.
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 51

Class

Field
Drupal 7 field source from database.

Namespace

Drupal\field\Plugin\migrate\source\d7

Code

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.'),
  ];
}