You are here

public function WebformSubmissionDateFilter::__construct in Webform Views Integration 8.5

WebformSubmissionFieldFilter constructor.

Overrides HandlerBase::__construct

File

src/Plugin/views/filter/WebformSubmissionDateFilter.php, line 43

Class

WebformSubmissionDateFilter
Filter for date values of a webform submission.

Namespace

Drupal\webform_views\Plugin\views\filter

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, TimeInterface $time, DateFormatterInterface $date_formatter) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->time = $time;
  $this->dateFormatter = $date_formatter;
}