You are here

public function ExportConfirmForm::__construct in Content Synchronizer 3.x

Same name and namespace in other branches
  1. 8.2 src/Form/ExportConfirmForm.php \Drupal\content_synchronizer\Form\ExportConfirmForm::__construct()
  2. 8 src/Form/ExportConfirmForm.php \Drupal\content_synchronizer\Form\ExportConfirmForm::__construct()

ExportConfirmForm constructor.

Parameters

\Drupal\Core\TempStore\PrivateTempStoreFactory $tempStoreFactory: The tempstore factory.

\Drupal\content_synchronizer\Service\ExportManager $exportManager: The export manager.

File

src/Form/ExportConfirmForm.php, line 62

Class

ExportConfirmForm
Class ExportConfirmForm.

Namespace

Drupal\content_synchronizer\Form

Code

public function __construct(PrivateTempStoreFactory $tempStoreFactory, ExportManager $exportManager) {
  $this->tempStoreFactory = $tempStoreFactory;
  $this->exportManager = $exportManager;
}