You are here

public function NumericFilter::operatorOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/filter/NumericFilter.php \Drupal\views\Plugin\views\filter\NumericFilter::operatorOptions()

Provide a list of all the numeric operators

Overrides FilterPluginBase::operatorOptions

1 call to NumericFilter::operatorOptions()
NumericFilter::adminSummary in core/modules/views/src/Plugin/views/filter/NumericFilter.php
Display the filter on the administrative summary

File

core/modules/views/src/Plugin/views/filter/NumericFilter.php, line 119
Contains \Drupal\views\Plugin\views\filter\NumericFilter.

Class

NumericFilter
Simple filter to handle greater than/less than filters

Namespace

Drupal\views\Plugin\views\filter

Code

public function operatorOptions($which = 'title') {
  $options = array();
  foreach ($this
    ->operators() as $id => $info) {
    $options[$id] = $info[$which];
  }
  return $options;
}