You are here

public function MigrationExecuteForm::__construct in Migrate Tools 8.4

Same name and namespace in other branches
  1. 8.5 src/Form/MigrationExecuteForm.php \Drupal\migrate_tools\Form\MigrationExecuteForm::__construct()

Constructs a new MigrationExecuteForm object.

Parameters

\Drupal\migrate\Plugin\MigrationPluginManagerInterface $migration_plugin_manager: The plugin manager for config entity-based migrations.

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.

File

src/Form/MigrationExecuteForm.php, line 34

Class

MigrationExecuteForm
This form is specifically for configuring process pipelines.

Namespace

Drupal\migrate_tools\Form

Code

public function __construct(MigrationPluginManagerInterface $migration_plugin_manager, RouteMatchInterface $route_match) {
  $this->migrationPluginManager = $migration_plugin_manager;
  $this->routeMatch = $route_match;
}