function Search::operatorForm

Same name and namespace in other branches
  1. 9 core/modules/search/src/Plugin/views/filter/Search.php \Drupal\search\Plugin\views\filter\Search::operatorForm()
  2. 8.9.x core/modules/search/src/Plugin/views/filter/Search.php \Drupal\search\Plugin\views\filter\Search::operatorForm()
  3. 10 core/modules/search/src/Plugin/views/filter/Search.php \Drupal\search\Plugin\views\filter\Search::operatorForm()

Overrides FilterPluginBase::operatorForm

File

core/modules/search/src/Plugin/views/filter/Search.php, line 78

Class

Search
Filter handler for search keywords.

Namespace

Drupal\search\Plugin\views\filter

Code

protected function operatorForm(&$form, FormStateInterface $form_state) {
    $form['operator'] = [
        '#type' => 'radios',
        '#title' => $this->t('On empty input'),
        '#default_value' => $this->operator,
        '#options' => [
            'optional' => $this->t('Show All'),
            'required' => $this->t('Show None'),
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.