public function FileMimeApplyForm::getQuestion in File MIME 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
File
- src/
Form/ FileMimeApplyForm.php, line 26
Class
- FileMimeApplyForm
- Implements the file MIME apply settings form.
Namespace
Drupal\filemime\FormCode
public function getQuestion() {
return $this
->t('Apply MIME type mapping to all uploaded files?');
}