interface MigratePluginManagerInterface in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/MigratePluginManagerInterface.php \Drupal\migrate\Plugin\MigratePluginManagerInterface
- 10 core/modules/migrate/src/Plugin/MigratePluginManagerInterface.php \Drupal\migrate\Plugin\MigratePluginManagerInterface
Hierarchy
- interface \Drupal\Component\Plugin\Discovery\DiscoveryInterface; interface \Drupal\Component\Plugin\Factory\FactoryInterface; interface \Drupal\Component\Plugin\Mapper\MapperInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
- interface \Drupal\migrate\Plugin\MigratePluginManagerInterface
- interface \Drupal\Component\Plugin\PluginManagerInterface
Expanded class hierarchy of MigratePluginManagerInterface
All classes that implement MigratePluginManagerInterface
1 file declares its use of MigratePluginManagerInterface
- MigrateFieldPluginManagerInterface.php in core/
modules/ migrate_drupal/ src/ Plugin/ MigrateFieldPluginManagerInterface.php
File
- core/
modules/ migrate/ src/ Plugin/ MigratePluginManagerInterface.php, line 7
Namespace
Drupal\migrate\PluginView source
interface MigratePluginManagerInterface extends PluginManagerInterface {
/**
* Creates a pre-configured instance of a migration plugin.
*
* A specific createInstance method is necessary to pass the migration on.
*
* @param string $plugin_id
* The ID of the plugin being instantiated.
* @param array $configuration
* An array of configuration relevant to the plugin instance.
* @param \Drupal\migrate\Plugin\MigrationInterface $migration
* The migration context in which the plugin will run.
*
* @return object
* A fully configured plugin instance.
*
* @throws \Drupal\Component\Plugin\Exception\PluginException
* If the instance cannot be created, such as if the ID is invalid.
*/
public function createInstance($plugin_id, array $configuration = [], MigrationInterface $migration = NULL);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DiscoveryInterface:: |
public | function | Gets a specific plugin definition. | 4 |
DiscoveryInterface:: |
public | function | Gets the definition of all plugins for this type. | 3 |
DiscoveryInterface:: |
public | function | Indicates if a specific plugin definition exists. | 1 |
MapperInterface:: |
public | function | Gets a preconfigured instance of a plugin. | 3 |
MigratePluginManagerInterface:: |
public | function |
Creates a pre-configured instance of a migration plugin. Overrides FactoryInterface:: |