You are here

public function FilterDisableForm::getQuestion in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/filter/src/Form/FilterDisableForm.php \Drupal\filter\Form\FilterDisableForm::getQuestion()

Returns the question to ask the user.

Return value

string The form question. The page title will be set to this value.

Overrides ConfirmFormInterface::getQuestion

File

core/modules/filter/src/Form/FilterDisableForm.php, line 22
Contains \Drupal\filter\Form\FilterDisableForm.

Class

FilterDisableForm
Provides the filter format disable form.

Namespace

Drupal\filter\Form

Code

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