function 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 58

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.'),
    'entity_type' => $this->t('Entity type'),
    '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.'),
  ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.