public function ParserOperationForm::getQuestion in Markdown 8.2
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/ ParserOperationForm.php, line 108
Class
- ParserOperationForm
- Provides a confirmation form to disable a parser.
Namespace
Drupal\markdown\FormCode
public function getQuestion() {
return $this
->t('Confirm Operation');
}