You are here

public function WebformSubmissionSelectFilter::showValueForm in Webform Views Integration 8.5

Shortcut to display the value form.

Overrides FilterPluginBase::showValueForm

File

src/Plugin/views/filter/WebformSubmissionSelectFilter.php, line 62

Class

WebformSubmissionSelectFilter
Select filter based on value of a webform submission.

Namespace

Drupal\webform_views\Plugin\views\filter

Code

public function showValueForm(&$form, FormStateInterface $form_state) {
  parent::showValueForm($form, $form_state);
  $form['value']['#options'] = [
    self::ALL => $this->valueOptions[self::ALL],
  ] + $form['value']['#options'];
}