You are here

protected function InOperator::valueSubmit in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/filter/InOperator.php \Drupal\views\Plugin\views\filter\InOperator::valueSubmit()

Perform any necessary changes to the form values prior to storage.

There is no need for this function to actually store the data.

Overrides FilterPluginBase::valueSubmit

2 methods override InOperator::valueSubmit()
Name::valueSubmit in core/modules/user/src/Plugin/views/filter/Name.php
Perform any necessary changes to the form values prior to storage.
TaxonomyIndexTid::valueSubmit in core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php
Perform any necessary changes to the form values prior to storage.

File

core/modules/views/src/Plugin/views/filter/InOperator.php, line 310

Class

InOperator
Simple filter to handle matching of multiple options selectable via checkboxes.

Namespace

Drupal\views\Plugin\views\filter

Code

protected function valueSubmit($form, FormStateInterface $form_state) {

  // Drupal's FAPI system automatically puts '0' in for any checkbox that
  // was not set, and the key to the checkbox if it is set.
  // Unfortunately, this means that if the key to that checkbox is 0,
  // we are unable to tell if that checkbox was set or not.
  // Luckily, the '#value' on the checkboxes form actually contains
  // *only* a list of checkboxes that were set, and we can use that
  // instead.
  $form_state
    ->setValue([
    'options',
    'value',
  ], $form['value']['#value']);
}