public function ExportConfirmForm::__construct in Content Synchronizer 8
Same name and namespace in other branches
- 8.2 src/Form/ExportConfirmForm.php \Drupal\content_synchronizer\Form\ExportConfirmForm::__construct()
- 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\FormCode
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);
}