public function ConfigDeleteForm::getQuestion in Devel 4.x
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
1 call to ConfigDeleteForm::getQuestion()
- ConfigDeleteForm::buildForm in src/Form/ ConfigDeleteForm.php 
- Form constructor.
File
- src/Form/ ConfigDeleteForm.php, line 90 
Class
- ConfigDeleteForm
- Edit config variable form.
Namespace
Drupal\devel\FormCode
public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete this configuration?');
}