You are here

public function TaskTypeDeleteForm::getQuestion in General Data Protection Regulation 3.0.x

Same name and namespace in other branches
  1. 8.2 modules/gdpr_tasks/src/Form/TaskTypeDeleteForm.php \Drupal\gdpr_tasks\Form\TaskTypeDeleteForm::getQuestion()
  2. 8 modules/gdpr_tasks/src/Form/TaskTypeDeleteForm.php \Drupal\gdpr_tasks\Form\TaskTypeDeleteForm::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

modules/gdpr_tasks/src/Form/TaskTypeDeleteForm.php, line 17

Class

TaskTypeDeleteForm
Builds the form to delete Task type entities.

Namespace

Drupal\gdpr_tasks\Form

Code

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