You are here

public function DummyMediaDealerPlugin::getDestinationMediaTypeSourceFieldLabel in Media Migration 8

Returns the label of the destination media type's source field.

Return value

string The label of the source field.

Overrides MediaDealerPluginInterface::getDestinationMediaTypeSourceFieldLabel

File

tests/src/Kernel/Plugin/migrate/source/DummyMediaDealerPlugin.php, line 42

Class

DummyMediaDealerPlugin
A Dummy media dealer plugin for testing Media Migration.

Namespace

Drupal\Tests\media_migration\Kernel\Plugin\migrate\source

Code

public function getDestinationMediaTypeSourceFieldLabel() {
  return $this
    ->getDestinationMediaTypeId();
}