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/d6/FieldOptionTranslation.php
Returns available fields on the source.
1 method overrides Field::fields()
FieldOptionTranslation::fields in core/modules/field/src/Plugin/migrate/source/d6/FieldOptionTranslation.php
Returns available fields on the source.

File

core/modules/field/src/Plugin/migrate/source/d6/Field.php, line 50

Class

Field
Drupal 6 field source from database.

Namespace

Drupal\field\Plugin\migrate\source\d6

Code

public function fields() {
  return [
    'field_name' => $this->t('Field name'),
    'type' => $this->t('Type (text, integer, ....)'),
    'widget_type' => $this->t('An instance-specific widget type'),
    'global_settings' => $this->t('Global settings. Shared with every field instance.'),
    'required' => $this->t('Required'),
    'multiple' => $this->t('Multiple'),
    'db_storage' => $this->t('DB storage'),
    'module' => $this->t('Module'),
    'db_columns' => $this->t('DB Columns'),
    'active' => $this->t('Active'),
    'locked' => $this->t('Locked'),
  ];
}

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