protected function DisableForm::getQuestion

Implements \Drupal\Core\Form\ConfirmFormBase::getQuestion().

Overrides ConfirmFormBase::getQuestion

File

drupal/core/modules/filter/lib/Drupal/filter/Form/DisableForm.php, line 35
Contains \Drupal\filter\Form\DisableForm.

Class

DisableForm
Provides the filter format disable form.

Namespace

Drupal\filter\Form

Code

protected function getQuestion() {
  return t('Are you sure you want to disable the text format %format?', array(
    '%format' => $this->format->name,
  ));
}