public function KeyConfigOverrideDeleteForm::getQuestion in Key 8
Overrides EntityDeleteFormTrait::getQuestion
File
- src/
Form/ KeyConfigOverrideDeleteForm.php, line 16
Class
- KeyConfigOverrideDeleteForm
- Builds the form to delete a Key.
Namespace
Drupal\key\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete the override %name?', [
'%name' => $this->entity
->label(),
]);
}