You are here

public function WebformSubmissionComputedFilter::valueForm in Webform Views Integration 8.5

Provide a simple textfield for equality

Overrides WebformSubmissionFieldFilter::valueForm

File

src/Plugin/views/filter/WebformSubmissionComputedFilter.php, line 17

Class

WebformSubmissionComputedFilter
Filter based on value of a computed webform element.

Namespace

Drupal\webform_views\Plugin\views\filter

Code

public function valueForm(&$form, FormStateInterface $form_state) {
  parent::valueForm($form, $form_state);
  unset($form['value']['#value']);
}