public function RequestTranslationTmgmtActionApproveForm::getQuestion in TMGMT Extension Suite 8.2
Same name and namespace in other branches
- 8.3 src/Form/RequestTranslationTmgmtActionApproveForm.php \Drupal\tmgmt_extension_suit\Form\RequestTranslationTmgmtActionApproveForm::getQuestion()
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
File
- src/
Form/ RequestTranslationTmgmtActionApproveForm.php, line 110
Class
- RequestTranslationTmgmtActionApproveForm
- 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 Request translations for these jobs?');
}