You are here

public function SignupDeleteForm::getQuestion in SendinBlue 8

Same name and namespace in other branches
  1. 8.2 src/Form/SignupDeleteForm.php \Drupal\sendinblue\Form\SignupDeleteForm::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/SignupDeleteForm.php, line 19

Class

SignupDeleteForm
Provides a form for deleting a content_entity_example entity.

Namespace

Drupal\sendinblue\Form

Code

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