You are here

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\Form

Code

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