You are here

public function WebformEntityReferenceViews::__construct in Webform Views Integration 8.5

WebformEntityReferenceViews constructor.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity type manager service

\Drupal\webform\Plugin\WebformElementManagerInterface $webform_element_manager: Webform element manager service

Overrides WebformElementViewsAbstract::__construct

File

src/WebformElementViews/WebformEntityReferenceViews.php, line 32

Class

WebformEntityReferenceViews
Webform views handler for entity reference webform elements.

Namespace

Drupal\webform_views\WebformElementViews

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager, WebformElementManagerInterface $webform_element_manager) {
  parent::__construct($entity_type_manager, $webform_element_manager);
  $this->entityTypeManager = $entity_type_manager;
}