public DateFormatDeleteForm::__construct(DateFormatterInterface $date_formatter)
Constructs an DateFormatDeleteForm object.
Parameters
\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter service.
File
- core/modules/system/src/Form/DateFormatDeleteForm.php, line 27
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; }
Please login to continue.