You are here

public function SearchApiViewsHandlerFilterOptions::expose_options in Search API 7

Set "reduce" option to FALSE by default.

Overrides views_handler_filter::expose_options

File

contrib/search_api_views/includes/handler_filter_options.inc, line 101
Contains the SearchApiViewsHandlerFilterOptions class.

Class

SearchApiViewsHandlerFilterOptions
Views filter handler for fields with a limited set of possible values.

Code

public function expose_options() {
  parent::expose_options();
  $this->options['expose']['reduce'] = FALSE;
}