You are here

public function ExportAllForm::__construct in Bibliography & Citation 2.0.x

Same name and namespace in other branches
  1. 8 modules/bibcite_export/src/Form/ExportAllForm.php \Drupal\bibcite_export\Form\ExportAllForm::__construct()

File

modules/bibcite_export/src/Form/ExportAllForm.php, line 35

Class

ExportAllForm
Export all reference data to any available export format.

Namespace

Drupal\bibcite_export\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, BibciteFormatManagerInterface $format_manager) {
  $this->tempStorage = $temp_store_factory
    ->get('bibcite_export');
  $this->formatManager = $format_manager;
}