You are here

public function TourBuilderExportForm::__construct in Tour Builder 8

Constructs a TourForm object.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity manager service.

\Drupal\Core\Config\StorageInterface $config_storage: The config storage service.

File

src/Form/TourBuilderExportForm.php, line 52

Class

TourBuilderExportForm
Form controller for the tour entity clone form.

Namespace

Drupal\tour_builder\Form

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, StorageInterface $config_storage) {
  $this->entityTypeManager = $entity_type_manager;
  $this->configStorage = $config_storage;
}