You are here

public function ExportConfirmForm::__construct in Content Synchronizer 8.2

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

Constructs a DeleteMultiple form object.

Parameters

\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The tempstore factory.

\Drupal\Core\Entity\EntityManagerInterface $manager: The entity manager.

File

src/Form/ExportConfirmForm.php, line 63

Class

ExportConfirmForm
Class ExportConfirmForm.

Namespace

Drupal\content_synchronizer\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityManagerInterface $manager) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->storage = $manager
    ->getStorage('node');
  $this->exportManager = \Drupal::service(ExportManager::SERVICE_NAME);
}