You are here

public function BaseTmgmtActionApproveForm::__construct in TMGMT Extension Suite 8.2

Same name and namespace in other branches
  1. 8.3 src/Form/BaseTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\BaseTmgmtActionApproveForm::__construct()
  2. 8 src/Form/BaseTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\BaseTmgmtActionApproveForm::__construct()

Constructs a new UserMultipleCancelConfirm.

Parameters

\Drupal\user\PrivateTempStoreFactory $temp_store_factory: The temp store factory.

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

\Drupal\Core\Language\LanguageManagerInterface $language_manager: Language manager service.

\Drupal\Core\Queue\QueueInterface $queue: The upload queue.

\Drupal\Core\Config\ImmutableConfig $config: Immutable config instance that contains settings.

1 call to BaseTmgmtActionApproveForm::__construct()
RequestTranslationTmgmtActionApproveForm::__construct in src/Form/RequestTranslationTmgmtActionApproveForm.php
Constructs a new UserMultipleCancelConfirm.
1 method overrides BaseTmgmtActionApproveForm::__construct()
RequestTranslationTmgmtActionApproveForm::__construct in src/Form/RequestTranslationTmgmtActionApproveForm.php
Constructs a new UserMultipleCancelConfirm.

File

src/Form/BaseTmgmtActionApproveForm.php, line 83

Class

BaseTmgmtActionApproveForm
Provides a confirmation form for sending multiple content entities.

Namespace

Drupal\tmgmt_extension_suit\Form

Code

public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $entity_type_manager, LanguageManagerInterface $language_manager, QueueInterface $queue, ImmutableConfig $config) {
  $this->tempStoreFactory = $temp_store_factory;
  $this->entityTypeManager = $entity_type_manager;
  $this->languageManager = $language_manager;
  $this->queue = $queue;
  $this->config = $config;
}