You are here

public function MigrationController::__construct in Migrate Tools 8.2

Same name and namespace in other branches
  1. 8.5 src/Controller/MigrationController.php \Drupal\migrate_tools\Controller\MigrationController::__construct()
  2. 8.3 src/Controller/MigrationController.php \Drupal\migrate_tools\Controller\MigrationController::__construct()
  3. 8.4 src/Controller/MigrationController.php \Drupal\migrate_tools\Controller\MigrationController::__construct()

Constructs a new MigrationController object.

Parameters

\Drupal\migrate_plus\Plugin\MigrationConfigEntityPluginManager $migration_config_entity_plugin_manager: The plugin manager for config entity-based migrations.

File

src/Controller/MigrationController.php, line 31

Class

MigrationController
Returns responses for migrate_tools migration view routes.

Namespace

Drupal\migrate_tools\Controller

Code

public function __construct(MigrationConfigEntityPluginManager $migration_config_entity_plugin_manager) {
  $this->migrationConfigEntityPluginManager = $migration_config_entity_plugin_manager;
}