You are here

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

Constructs a new FullcalendarEventManagerForm.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_manager: The entity manager.

\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

File

modules/bat_fullcalendar/src/Form/FullcalendarEventManagerForm.php, line 56
Contains \Drupal\bat_fullcalendar\Form\FullcalendarEventManagerForm.

Class

FullcalendarEventManagerForm

Namespace

Drupal\bat_fullcalendar\Form

Code

public function __construct(EntityTypeManagerInterface $entity_manager, EntityFieldManagerInterface $entity_field_manager, RendererInterface $renderer) {
  $this->entityTypeManager = $entity_manager;
  $this->entityFieldManager = $entity_field_manager;
  $this->renderer = $renderer;
}