You are here

public function PickAccountsForm::__construct in User Merge 2.x

MergeAccountsForm constructor.

Parameters

\Drupal\usermerge\MultiStepStorageInterface $multi_step_storage: Multi step storage.

\Drupal\usermerge\ReviewFormSwitcherInterface $review_switcher: Review form switcher.

\Drupal\usermerge\BatchGeneratorInterface $batch_generator: Batch generator.

\Drupal\Component\Plugin\PluginManagerInterface $action_manager: Action plugin manager.

\Drupal\Component\Plugin\PluginManagerInterface $property_manager: Property plugin manager.

Overrides MultiStepFormBase::__construct

File

src/Form/PickAccountsForm.php, line 47

Class

PickAccountsForm
Class PickAccountsForm.

Namespace

Drupal\usermerge\Form

Code

public function __construct(MultiStepStorageInterface $multi_step_storage, ReviewFormSwitcherInterface $review_switcher, BatchGeneratorInterface $batch_generator, PluginManagerInterface $action_manager, PluginManagerInterface $property_manager) {
  parent::__construct($multi_step_storage, $review_switcher, $batch_generator);
  $this->actionPluginManager = $action_manager;
  $this->propertyPluginManager = $property_manager;
}