You are here

public function DiscardLayoutChangesForm::getQuestion in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/src/Form/DiscardLayoutChangesForm.php \Drupal\layout_builder\Form\DiscardLayoutChangesForm::getQuestion()
  2. 9 core/modules/layout_builder/src/Form/DiscardLayoutChangesForm.php \Drupal\layout_builder\Form\DiscardLayoutChangesForm::getQuestion()

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

core/modules/layout_builder/src/Form/DiscardLayoutChangesForm.php, line 74

Class

DiscardLayoutChangesForm
Discards any pending changes to the layout.

Namespace

Drupal\layout_builder\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to discard your layout changes?');
}