You are here

public function LayoutOptionDeleteForm::getQuestion in Bootstrap Layout Builder 1.x

Same name and namespace in other branches
  1. 2.x src/Form/LayoutOptionDeleteForm.php \Drupal\bootstrap_layout_builder\Form\LayoutOptionDeleteForm::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

src/Form/LayoutOptionDeleteForm.php, line 19

Class

LayoutOptionDeleteForm
Builds the layout option deletion form.

Namespace

Drupal\bootstrap_layout_builder\Form

Code

public function getQuestion() {
  return $this
    ->t('Are you sure you want to delete %name?', [
    '%name' => $this->entity
      ->label(),
  ]);
}