function ContactDeleteForm::getQuestion

Same name in other branches
  1. 3.x modules/content_entity_example/src/Form/ContactDeleteForm.php \Drupal\content_entity_example\Form\ContactDeleteForm::getQuestion()
  2. 8.x-1.x content_entity_example/src/Form/ContactDeleteForm.php \Drupal\content_entity_example\Form\ContactDeleteForm::getQuestion()

Overrides ConfirmFormInterface::getQuestion

File

modules/content_entity_example/src/Form/ContactDeleteForm.php, line 19

Class

ContactDeleteForm
Provides a form for deleting a content_entity_example entity.

Namespace

Drupal\content_entity_example\Form

Code

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