function DateFormatDeleteForm::getQuestion

Overrides EntityDeleteFormTrait::getQuestion

File

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

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($this->time
      ->getRequestTime(), $this->entity
      ->id()),
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.