You are here

public function WebformSubmissionSubmittedToLabel::__construct in Webform Views Integration 8.5

Constructs a new WebformSubmissionSubmittedToLabel object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

array $plugin_definition: The plugin implementation definition.

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

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager.

Overrides HandlerBase::__construct

File

src/Plugin/views/field/WebformSubmissionSubmittedToLabel.php, line 36

Class

WebformSubmissionSubmittedToLabel
Display entity label which a webform submission was submitted to.

Namespace

Drupal\webform_views\Plugin\views\field

Code

public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_manager, LanguageManagerInterface $language_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityManager = $entity_manager;
  $this->languageManager = $language_manager;
}