public function LayoutOptionDeleteForm::getQuestion in Bootstrap Layout Builder 1.x
Same name and namespace in other branches
- 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\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name?', [
'%name' => $this->entity
->label(),
]);
}