function ExampleConfigEntityDeleteForm::getQuestion
Same name in other branches
- 4.0.x tests/modules/ctools_wizard_test/src/Form/ExampleConfigEntityDeleteForm.php \Drupal\ctools_wizard_test\Form\ExampleConfigEntityDeleteForm::getQuestion()
Overrides ConfirmFormInterface::getQuestion
File
-
tests/
modules/ ctools_wizard_test/ src/ Form/ ExampleConfigEntityDeleteForm.php, line 17
Class
- ExampleConfigEntityDeleteForm
- Builds the form to delete Example config entity entities.
Namespace
Drupal\ctools_wizard_test\FormCode
public function getQuestion() {
return $this->t('Are you sure you want to delete %name?', [
'%name' => $this->entity
->label(),
]);
}