You are here

public function DateFormatDeleteForm::__construct in Drupal 9

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

Constructs a DateFormatDeleteForm object.

Parameters

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.

File

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

Class

DateFormatDeleteForm
Builds a form to delete a date format.

Namespace

Drupal\system\Form

Code

public function __construct(DateFormatterInterface $date_formatter) {
  $this->dateFormatter = $date_formatter;
}