You are here

protected static function WordPressMigrationGenerator::createEntityFromPlugin in WordPress Migrate 8.3

Create a configuration entity from a core migration plugin's configuration.

@todo: Remove and replace calls to use Migration::createEntityFromPlugin() when there's a migrate_plus release containing it we can have a dependency on.

Parameters

string $plugin_id: ID of a migration plugin managed by MigrationPluginManager.

string $new_plugin_id: ID to use for the new configuration entity.

Return value

\Drupal\Core\Entity\EntityInterface is same as \Drupal\migrate_plus\Entity\MigrationInterface A Migration configuration entity (not saved to persistent storage).

Throws

\Drupal\Component\Plugin\Exception\PluginException

2 calls to WordPressMigrationGenerator::createEntityFromPlugin()
WordPressMigrationGenerator::createContentMigration in src/WordPressMigrationGenerator.php
Setup the migration for a given WordPress content type.
WordPressMigrationGenerator::createMigrations in src/WordPressMigrationGenerator.php
Creates a set of WordPress import migrations based on configuration settings.

File

src/WordPressMigrationGenerator.php, line 316

Class

WordPressMigrationGenerator
Functionality to construct WordPress migrations from broad configuration settings.

Namespace

Drupal\wordpress_migrate

Code

protected static function createEntityFromPlugin($plugin_id, $new_plugin_id) {

  /** @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface $plugin_manager */
  $plugin_manager = \Drupal::service('plugin.manager.migration');
  $migration_plugin = $plugin_manager
    ->createInstance($plugin_id);
  $entity_array['id'] = $new_plugin_id;
  $entity_array['migration_tags'] = $migration_plugin
    ->getMigrationTags();
  $entity_array['label'] = $migration_plugin
    ->label();
  $entity_array['source'] = $migration_plugin
    ->getSourceConfiguration();
  $entity_array['destination'] = $migration_plugin
    ->getDestinationConfiguration();
  $entity_array['process'] = $migration_plugin
    ->getProcess();
  $entity_array['migration_dependencies'] = $migration_plugin
    ->getMigrationDependencies();
  $migration_entity = Migration::create($entity_array);
  return $migration_entity;
}