You are here

public function EntityExportCsvForm::__construct in Entity Export CSV 8

Define entity export csv form constructor.

Parameters

\Drupal\entity_export_csv\Plugin\FieldTypeExportManagerInterface $field_type_export_manager: The field type export manager.

\Drupal\entity_export_csv\EntityExportCsvManagerInterface $entity_export_csv_manager: The entity export csv manager service.

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.

File

src/Form/EntityExportCsvForm.php, line 58

Class

EntityExportCsvForm
Class EntityExportCsvForm.

Namespace

Drupal\entity_export_csv\Form

Code

public function __construct(FieldTypeExportManagerInterface $field_type_export_manager, EntityExportCsvManagerInterface $entity_export_csv_manager, LanguageManagerInterface $language_manager) {
  $this->fieldTypeExportManager = $field_type_export_manager;
  $this->manager = $entity_export_csv_manager;
  $this->languageManager = $language_manager;
}