You are here

public function EventSeriesDeleteEventsForm::__construct in Booking and Availability Management Tools for Drupal 8

Constructs a EventSeriesDeleteEventsForm 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/EventSeriesDeleteEventsForm.php, line 35
Contains \Drupal\bat_event_series\Entity\Form\EventSeriesDeleteEventsForm.

Class

EventSeriesDeleteEventsForm
Provides a form for deleting Event series entities.

Namespace

Drupal\bat_event_series\Entity\Form

Code

public function __construct(EntityRepositoryInterface $entity_repository, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL) {
  parent::__construct($entity_repository, $entity_type_bundle_info, $time);
}