You are here

public function DateFormatDeleteForm::getQuestion in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Form/DateFormatDeleteForm.php \Drupal\system\Form\DateFormatDeleteForm::getQuestion()
  2. 9 core/modules/system/src/Form/DateFormatDeleteForm.php \Drupal\system\Form\DateFormatDeleteForm::getQuestion()

Overrides EntityDeleteFormTrait::getQuestion

File

core/modules/system/src/Form/DateFormatDeleteForm.php, line 45

Class

DateFormatDeleteForm
Builds a form to delete a date format.

Namespace

Drupal\system\Form

Code

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