You are here

public function FillPdfFormDeleteForm::getQuestion in FillPDF 8.4

Same name and namespace in other branches
  1. 5.0.x src/Form/FillPdfFormDeleteForm.php \Drupal\fillpdf\Form\FillPdfFormDeleteForm::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/FillPdfFormDeleteForm.php, line 18

Class

FillPdfFormDeleteForm
Provides a deletion confirmation form for a FillPdfForm.

Namespace

Drupal\fillpdf\Form

Code

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