function FieldInstancePerViewMode::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/FieldInstancePerViewMode.php, line 86

Class

FieldInstancePerViewMode
Drupal 6 field instance per view mode source from database.

Namespace

Drupal\field\Plugin\migrate\source\d6

Code

public function fields() {
  return [
    'field_name' => $this->t('The machine name of field.'),
    'type_name' => $this->t('Content type where this field is used.'),
    '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'),
  ];
}

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