Same name and namespace in other branches
  1. 8.9.x core/modules/views/src/Plugin/views/filter/InOperator.php \Drupal\views\Plugin\views\filter\InOperator::buildExposeForm()
  2. 9 core/modules/views/src/Plugin/views/filter/InOperator.php \Drupal\views\Plugin\views\filter\InOperator::buildExposeForm()
1 call to InOperator::buildExposeForm()
TaxonomyIndexTid::buildExposeForm in core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php
1 method overrides InOperator::buildExposeForm()
TaxonomyIndexTid::buildExposeForm in core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php

File

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

Class

InOperator

Namespace

Drupal\views\Plugin\views\filter

Code

public function buildExposeForm(&$form, FormStateInterface $form_state) {
  parent::buildExposeForm($form, $form_state);
  $form['expose']['reduce'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Limit list to selected items'),
    '#description' => $this
      ->t('If checked, the only items presented to the user will be the ones selected here.'),
    // Safety.
    '#default_value' => !empty($this->options['expose']['reduce']),
  ];
}