You are here

public function GatherContentEntity::fields in GatherContent 8.5

Returns an array of destination fields.

Derived classes must implement fields(), returning a list of available destination fields.

Parameters

\Drupal\migrate\Plugin\MigrationInterface $migration: Unused, will be removed before Drupal 9.0.x. Defaults to NULL.

Return value

array

  • Keys: machine names of the fields
  • Values: Human-friendly descriptions of the fields.

Overrides Entity::fields

File

src/Plugin/migrate/destination/GatherContentEntity.php, line 112

Class

GatherContentEntity
Custom migrate entity.

Namespace

Drupal\gathercontent\Plugin\migrate\destination

Code

public function fields(MigrationInterface $migration = NULL) {
  $fields = parent::fields();
  $fields += [
    'delta' => $this
      ->t('The delta of this body and version in the source node'),
  ];
  return $fields;
}