You are here

public function DummyDestination::fields in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/modules/migrate_events_test/src/Plugin/migrate/destination/DummyDestination.php \Drupal\migrate_events_test\Plugin\migrate\destination\DummyDestination::fields()

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 MigrateDestinationInterface::fields

File

core/modules/migrate/tests/modules/migrate_events_test/src/Plugin/migrate/destination/DummyDestination.php, line 28

Class

DummyDestination
Plugin annotation @MigrateDestination( id = "dummy", requirements_met = true )

Namespace

Drupal\migrate_events_test\Plugin\migrate\destination

Code

public function fields(MigrationInterface $migration = NULL) {
  return [
    'value' => 'Dummy value',
  ];
}