You are here

public function DummyMediaDealerPlugin::getDestinationMediaTypeLabel in Media Migration 8

Returns the label of the destination media type.

Return value

string The label of the destination media type.

Overrides MediaDealerPluginInterface::getDestinationMediaTypeLabel

File

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

Class

DummyMediaDealerPlugin
A Dummy media dealer plugin for testing Media Migration.

Namespace

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

Code

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