function 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()),
  ]);
}

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