You are here

public function ContentExportMultiple::__construct in Content Synchronization 8.2

Same name and namespace in other branches
  1. 3.0.x src/Form/ContentExportMultiple.php \Drupal\content_sync\Form\ContentExportMultiple::__construct()

Constructs a ContentSyncMultiple form object.

Parameters

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

\Drupal\Core\Entity\EntityTypeManagerInterface $manager: The entity type manager.

File

src/Form/ContentExportMultiple.php, line 63

Class

ContentExportMultiple
Class ContentExportMultiple

Namespace

Drupal\content_sync\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $manager, ContentSyncManagerInterface $content_sync_manager, array $formats, FileSystemInterface $file_system) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->entityTypeManager = $manager;
  $this->contentSyncManager = $content_sync_manager;
  $this->formats = $formats;
  $this->fileSystem = $file_system;
}