public function EventSeriesDeleteForm::__construct in Booking and Availability Management Tools for Drupal 8
Constructs a EventSeriesDeleteForm object.
Parameters
\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository service.
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info: The entity type bundle service.
\Drupal\Component\Datetime\TimeInterface $time: The time service.
Overrides ContentEntityForm::__construct
File
- modules/
bat_event_series/ src/ Entity/ Form/ EventSeriesDeleteForm.php, line 35 - Contains \Drupal\bat_event_series\Entity\Form\EventSeriesDeleteForm.
Class
- EventSeriesDeleteForm
- Provides a form for deleting Event series entities.
Namespace
Drupal\bat_event_series\Entity\FormCode
public function __construct(EntityRepositoryInterface $entity_repository, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL) {
parent::__construct($entity_repository, $entity_type_bundle_info, $time);
}