You are here

public function BaseTmgmtActionApproveForm::__construct in TMGMT Extension Suite 8

Same name and namespace in other branches
  1. 8.3 src/Form/BaseTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\BaseTmgmtActionApproveForm::__construct()
  2. 8.2 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.

File

src/Form/BaseTmgmtActionApproveForm.php, line 84

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;

  //    parent::__construct($temp_store_factory, $entity_type_manager, $submission_storage, $language_manager, $queue, $config);
}