interface 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 extends \Drupal\Component\Plugin\Discovery\DiscoveryInterface, \Drupal\Component\Plugin\Factory\FactoryInterface, \Drupal\Component\Plugin\Mapper\MapperInterface- interface \Drupal\migrate\Plugin\MigratePluginManagerInterface extends \Drupal\Component\Plugin\PluginManagerInterface
 
 
- interface \Drupal\Component\Plugin\PluginManagerInterface extends \Drupal\Component\Plugin\Discovery\DiscoveryInterface, \Drupal\Component\Plugin\Factory\FactoryInterface, \Drupal\Component\Plugin\Mapper\MapperInterface
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
| Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|
| DiscoveryInterface::getDefinition | public | function | Gets a specific plugin definition. | 4 | |
| DiscoveryInterface::getDefinitions | public | function | Gets the definition of all plugins for this type. | 3 | |
| DiscoveryInterface::hasDefinition | public | function | Indicates if a specific plugin definition exists. | 2 | |
| MapperInterface::getInstance | public | function | Gets a preconfigured instance of a plugin. | 4 | |
| MigratePluginManagerInterface::createInstance | public | function | Creates a pre-configured instance of a migration plugin. | Overrides FactoryInterface::createInstance | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
