public function SendContextActionApproveForm::__construct in TMGMT Translator Smartling 8
Same name and namespace in other branches
- 8.4 src/Form/SendContextActionApproveForm.php \Drupal\tmgmt_smartling\Form\SendContextActionApproveForm::__construct()
- 8.2 src/Form/SendContextActionApproveForm.php \Drupal\tmgmt_smartling\Form\SendContextActionApproveForm::__construct()
- 8.3 src/Form/SendContextActionApproveForm.php \Drupal\tmgmt_smartling\Form\SendContextActionApproveForm::__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.
File
- src/
Form/ SendContextActionApproveForm.php, line 85
Class
- SendContextActionApproveForm
- Provides a confirmation form for sending multiple content entities.
Namespace
Drupal\tmgmt_smartling\FormCode
public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $entity_type_manager, LanguageManagerInterface $language_manager, QueueInterface $queue) {
$this->tempStoreFactory = $temp_store_factory;
$this->entityTypeManager = $entity_type_manager;
$this->languageManager = $language_manager;
$this->queue = $queue;
}