public function BaseTmgmtActionApproveForm::getQuestion in TMGMT Extension Suite 8
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
4 methods override BaseTmgmtActionApproveForm::getQuestion()
- CancelTmgmtActionApproveForm::getQuestion in src/
Form/ CancelTmgmtActionApproveForm.php - Returns the question to ask the user.
- ClearJobItemsDataTmgmtActionApproveForm::getQuestion in src/
Form/ ClearJobItemsDataTmgmtActionApproveForm.php - Returns the question to ask the user.
- DeleteTmgmtActionApproveForm::getQuestion in src/
Form/ DeleteTmgmtActionApproveForm.php - Returns the question to ask the user.
- DownloadTmgmtActionApproveForm::getQuestion in src/
Form/ DownloadTmgmtActionApproveForm.php - Returns the question to ask the user.
File
- src/
Form/ BaseTmgmtActionApproveForm.php, line 115
Class
- BaseTmgmtActionApproveForm
- Provides a confirmation form for sending multiple content entities.
Namespace
Drupal\tmgmt_extension_suit\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to send these jobs to Translation Provider?');
}