You are here

interface FileEntityDealerManagerInterface in Media Migration 8

Interface of FileEntityDealerManager.

Hierarchy

Expanded class hierarchy of FileEntityDealerManagerInterface

All classes that implement FileEntityDealerManagerInterface

See also

\Drupal\media_migration\FileEntityDealerManager

6 files declare their use of FileEntityDealerManagerInterface
D7FileEntityConfigDeriver.php in src/Plugin/migrate/D7FileEntityConfigDeriver.php
D7FileEntityDeriver.php in src/Plugin/migrate/D7FileEntityDeriver.php
FileEntityConfigSourceBase.php in src/Plugin/migrate/source/d7/FileEntityConfigSourceBase.php
FileEntityDealerTest.php in tests/src/Kernel/Plugin/FileEntityDealerTest.php
FileEntityItem.php in src/Plugin/migrate/source/d7/FileEntityItem.php

... See full list

File

src/FileEntityDealerManagerInterface.php, line 10

Namespace

Drupal\media_migration
View source
interface FileEntityDealerManagerInterface {

  /**
   * Gets the plugin definitions for the specified file entity type.
   *
   * @param string $type
   *   The file entity type.
   * @param string $scheme
   *   The URI scheme.
   *
   * @return \Drupal\media_migration\FileEntityDealerPluginInterface|null
   *   A fully configured plugin instance or NULL if no applicable plugin was
   *   found.
   */
  public function createInstanceFromTypeAndScheme(string $type, string $scheme);

}

Members

Namesort descending Modifiers Type Description Overrides
FileEntityDealerManagerInterface::createInstanceFromTypeAndScheme public function Gets the plugin definitions for the specified file entity type. 1