function Field::fields

Same name in this branch
  1. 9 core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
Same name in other branches
  1. 8.9.x core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
  2. 8.9.x core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::fields()
  3. 10 core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
  4. 10 core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::fields()
  5. 11.x core/modules/field/src/Plugin/migrate/source/d6/Field.php \Drupal\field\Plugin\migrate\source\d6\Field::fields()
  6. 11.x core/modules/field/src/Plugin/migrate/source/d7/Field.php \Drupal\field\Plugin\migrate\source\d7\Field::fields()

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