Mercurial > hg > isophonics-drupal-site
diff modules/contrib/migrate_plus/src/Entity/Migration.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/contrib/migrate_plus/src/Entity/Migration.php Wed Nov 29 16:09:58 2017 +0000 @@ -0,0 +1,83 @@ +<?php + +namespace Drupal\migrate_plus\Entity; + +use Drupal\Core\Cache\Cache; +use Drupal\Core\Config\Entity\ConfigEntityBase; +use Drupal\Core\Entity\EntityTypeInterface; + +/** + * Defines the Migration entity. + * + * The migration entity stores the information about a single migration, like + * the source, process and destination plugins. + * + * @ConfigEntityType( + * id = "migration", + * label = @Translation("Migration"), + * entity_keys = { + * "id" = "id", + * "label" = "label", + * "weight" = "weight" + * } + * ) + */ +class Migration extends ConfigEntityBase implements MigrationInterface { + + /** + * The migration ID (machine name). + * + * @var string + */ + protected $id; + + /** + * The human-readable label for the migration. + * + * @var string + */ + protected $label; + + /** + * {@inheritdoc} + */ + protected function invalidateTagsOnSave($update) { + parent::invalidateTagsOnSave($update); + Cache::invalidateTags(['migration_plugins']); + } + + /** + * {@inheritdoc} + */ + protected static function invalidateTagsOnDelete(EntityTypeInterface $entity_type, array $entities) { + parent::invalidateTagsOnDelete($entity_type, $entities); + Cache::invalidateTags(['migration_plugins']); + } + + /** + * Create a configuration entity from a core migration plugin's configuration. + * + * @param string $plugin_id + * ID of a migration plugin managed by MigrationPluginManager. + * @param string $new_plugin_id + * ID to use for the new configuration entity. + * + * @return \Drupal\migrate_plus\Entity\MigrationInterface + * A Migration configuration entity (not saved to persistent storage). + */ + public 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->get('migration_tags'); + $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 = static::create($entity_array); + return $migration_entity; + } + +}